summaryrefslogtreecommitdiff
path: root/Lib/ctypes
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-26 10:26:33 +0000
committerMartin Panter <vadmium+py@gmail.com>2015-11-26 10:26:33 +0000
commit7b2eb819971a14285434cfce13c6d39af81bf2df (patch)
treec2b46765ad0df30376d45af3b7c035a0c453e68b /Lib/ctypes
parent44d682a9fd910fb756bb840b12e03da657f5daf3 (diff)
parent92072ac8b4cbd8c0bf8d7e7da143887fb9d53a03 (diff)
downloadcpython-git-7b2eb819971a14285434cfce13c6d39af81bf2df.tar.gz
Issue #25622: Merge ctypes test from 3.4 into 3.5
Diffstat (limited to 'Lib/ctypes')
-rw-r--r--Lib/ctypes/test/test_values.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/ctypes/test/test_values.py b/Lib/ctypes/test/test_values.py
index 9551e7ae9f..b018ca3013 100644
--- a/Lib/ctypes/test/test_values.py
+++ b/Lib/ctypes/test/test_values.py
@@ -28,8 +28,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):