[Python-checkins] cpython (merge 3.4 -> default): fix the test on windows which has different return codes from killed
gregory.p.smith
python-checkins at python.org
Wed Apr 23 17:39:14 CEST 2014
http://hg.python.org/cpython/rev/5e978d499066
changeset: 90443:5e978d499066
parent: 90441:a70cf4a35376
parent: 90442:2d1049ebb588
user: Gregory P. Smith <greg at krypto.org>
date: Wed Apr 23 08:39:02 2014 -0700
summary:
fix the test on windows which has different return codes from killed
children.
files:
Lib/test/test_subprocess.py | 15 ++++++++++-----
1 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -1077,17 +1077,22 @@
t = threading.Timer(0.2, kill_proc_timer_thread)
t.start()
+ if mswindows:
+ expected_errorcode = 1
+ else:
+ # Should be -9 because of the proc.kill() from the thread.
+ expected_errorcode = -9
+
# Wait for the process to finish; the thread should kill it
# long before it finishes on its own. Supplying a timeout
# triggers a different code path for better coverage.
proc.wait(timeout=20)
- # Should be -9 because of the proc.kill() from the thread.
- self.assertEqual(proc.returncode, -9,
+ self.assertEqual(proc.returncode, expected_errorcode,
msg="unexpected result in wait from main thread")
# This should be a no-op with no change in returncode.
proc.wait()
- self.assertEqual(proc.returncode, -9,
+ self.assertEqual(proc.returncode, expected_errorcode,
msg="unexpected result in second main wait.")
t.join()
@@ -1096,8 +1101,8 @@
# be set by the wrong thread that doesn't actually have it
# leading to an incorrect value.
self.assertEqual([('thread-start-poll-result', None),
- ('thread-after-kill-and-wait', -9),
- ('thread-after-second-wait', -9)],
+ ('thread-after-kill-and-wait', expected_errorcode),
+ ('thread-after-second-wait', expected_errorcode)],
results)
def test_issue8780(self):
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list