From: Serhiy Storchaka Date: Mon, 4 Feb 2013 13:19:37 +0000 (+0200) Subject: Temporarily disable test_from_dll in test_returnfuncptrs.py for Windows. X-Git-Tag: v3.2.4rc1~147 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a66b46aad6889e9aba374e856e10ba1cf30d574c;p=thirdparty%2FPython%2Fcpython.git Temporarily disable test_from_dll in test_returnfuncptrs.py for Windows. --- diff --git a/Lib/ctypes/test/test_returnfuncptrs.py b/Lib/ctypes/test/test_returnfuncptrs.py index 21cb843fed3c..6b2d047ed169 100644 --- a/Lib/ctypes/test/test_returnfuncptrs.py +++ b/Lib/ctypes/test/test_returnfuncptrs.py @@ -1,5 +1,6 @@ import unittest from ctypes import * +import os import _ctypes_test @@ -33,6 +34,7 @@ class ReturnFuncPtrTestCase(unittest.TestCase): self.assertRaises(ArgumentError, strchr, b"abcdef", 3.0) self.assertRaises(TypeError, strchr, b"abcdef") + @unittest.skipIf(os.name == 'nt', 'Temporarily disabled for Windows') def test_from_dll(self): dll = CDLL(_ctypes_test.__file__) # _CFuncPtr instances are now callable with a tuple argument @@ -43,8 +45,9 @@ class ReturnFuncPtrTestCase(unittest.TestCase): self.assertRaises(ArgumentError, strchr, b"abcdef", 3.0) self.assertRaises(TypeError, strchr, b"abcdef") + @unittest.skipIf(os.name == 'nt', 'Temporarily disabled for Windows') # Issue 6083: Reference counting bug - def test_test_from_dll_refcount(self): + def test_from_dll_refcount(self): class BadSequence(tuple): def __getitem__(self, key): if key == 0: