mirror of
https://github.com/python/cpython.git
synced 2025-12-01 23:32:16 +00:00
Issue #25622: Rename to PythonValuesTestCase and enable for non-Windows
This commit is contained in:
parent
097a664f57
commit
92072ac8b4
1 changed files with 1 additions and 2 deletions
|
|
@ -28,8 +28,7 @@ class ValuesTestCase(unittest.TestCase):
|
||||||
ctdll = CDLL(_ctypes_test.__file__)
|
ctdll = CDLL(_ctypes_test.__file__)
|
||||||
self.assertRaises(ValueError, c_int.in_dll, ctdll, "Undefined_Symbol")
|
self.assertRaises(ValueError, c_int.in_dll, ctdll, "Undefined_Symbol")
|
||||||
|
|
||||||
@unittest.skipUnless(sys.platform == 'win32', 'Windows-specific test')
|
class PythonValuesTestCase(unittest.TestCase):
|
||||||
class Win_ValuesTestCase(unittest.TestCase):
|
|
||||||
"""This test only works when python itself is a dll/shared library"""
|
"""This test only works when python itself is a dll/shared library"""
|
||||||
|
|
||||||
def test_optimizeflag(self):
|
def test_optimizeflag(self):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue