]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Temporarily disable test_from_dll in test_returnfuncptrs.py for Windows.
authorSerhiy Storchaka <storchaka@gmail.com>
Mon, 4 Feb 2013 13:19:21 +0000 (15:19 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Mon, 4 Feb 2013 13:19:21 +0000 (15:19 +0200)
Lib/ctypes/test/test_returnfuncptrs.py

index 29ae076e8dbbc038e82c8d7f92d10007c0cb5d0e..fb9048c528eb12c67e41a384a2e3aa41df8ad69b 100644 (file)
@@ -1,5 +1,6 @@
 import unittest
 from ctypes import *
+import os
 
 import _ctypes_test
 
@@ -31,6 +32,7 @@ class ReturnFuncPtrTestCase(unittest.TestCase):
         self.assertRaises(ArgumentError, strchr, "abcdef", 3)
         self.assertRaises(TypeError, strchr, "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
@@ -42,7 +44,8 @@ class ReturnFuncPtrTestCase(unittest.TestCase):
         self.assertRaises(TypeError, strchr, b"abcdef")
 
     # Issue 6083: Reference counting bug
-    def test_test_from_dll_refcount(self):
+    @unittest.skipIf(os.name == 'nt', 'Temporarily disabled for Windows')
+    def test_from_dll_refcount(self):
         class BadSequence(tuple):
             def __getitem__(self, key):
                 if key == 0: