From: Martin Panter Date: Thu, 26 Nov 2015 02:36:26 +0000 (+0000) Subject: Issue #25622: Rename to PythonValuesTestCase and enable for non-Windows X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=929e363a7b75690dadfa3701c4701c940304d341;p=python Issue #25622: Rename to PythonValuesTestCase and enable for non-Windows --- diff --git a/Lib/ctypes/test/test_values.py b/Lib/ctypes/test/test_values.py index 14d69fe662..fe7dcf0541 100644 --- a/Lib/ctypes/test/test_values.py +++ b/Lib/ctypes/test/test_values.py @@ -22,8 +22,7 @@ class ValuesTestCase(unittest.TestCase): ctdll = CDLL(_ctypes_test.__file__) self.assertRaises(ValueError, c_int.in_dll, ctdll, "Undefined_Symbol") -@unittest.skipUnless(sys.platform == 'win32', 'Windows-specific test') -class Win_ValuesTestCase(unittest.TestCase): +class PythonValuesTestCase(unittest.TestCase): """This test only works when python itself is a dll/shared library""" def test_optimizeflag(self):