From: Gregory P. Smith Date: Mon, 1 Mar 2010 02:53:24 +0000 (+0000) Subject: Fix the new test on windows (skip it, its posix only) X-Git-Tag: v2.7a4~83 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c1baf4ac9ee17bbd2433533cd246db5d96bad015;p=thirdparty%2FPython%2Fcpython.git Fix the new test on windows (skip it, its posix only) --- diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 4e45e116f1e0..d9b54243d172 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -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):