]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix the new test on windows (skip it, its posix only)
authorGregory P. Smith <greg@mad-scientist.com>
Mon, 1 Mar 2010 02:53:24 +0000 (02:53 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Mon, 1 Mar 2010 02:53:24 +0000 (02:53 +0000)
Lib/test/test_subprocess.py

index 4e45e116f1e015393d7c2deaaa73455990ce575c..d9b54243d1722daa06bd89323310c786d80e392d 100644 (file)
@@ -774,6 +774,7 @@ class ProcessTestCaseNoPoll(ProcessTestCase):
 
 
 class HelperFunctionTests(unittest.TestCase):
+    @unittest.skipIf(mswindows, "errno and EINTR make no sense on windows")
     def test_eintr_retry_call(self):
         record_calls = []
         def fake_os_func(*args):