summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2010-03-01 02:53:24 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2010-03-01 02:53:24 (GMT)
commitc1baf4ac9ee17bbd2433533cd246db5d96bad015 (patch)
tree2dee43869e50cca49777025efd4fd3d6f9f6bb47 /Lib
parent4b862365c865ac9859ee63bd50c6f54bd94441c9 (diff)
downloadcpython-c1baf4ac9ee17bbd2433533cd246db5d96bad015.zip
cpython-c1baf4ac9ee17bbd2433533cd246db5d96bad015.tar.gz
cpython-c1baf4ac9ee17bbd2433533cd246db5d96bad015.tar.bz2
Fix the new test on windows (skip it, its posix only)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_subprocess.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index 4e45e11..d9b5424 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):