[Python-checkins] cpython (merge 3.1 -> 3.2): Merge (original) (raw)
antoine.pitrou python-checkins at python.org
Sun Mar 20 17:43:01 CET 2011
- Previous message: [Python-checkins] cpython (3.1): Call reap_children() where appropriate
- Next message: [Python-checkins] cpython (merge 3.2 -> default): Merge
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
http://hg.python.org/cpython/rev/adbdb3e74461 changeset: 68759:adbdb3e74461 branch: 3.2 parent: 68753:d0d1235cb66e parent: 68758:154b1e20e62b user: Antoine Pitrou <solipsis at pitrou.net> date: Sun Mar 20 17:36:26 2011 +0100 summary: Merge
files: Lib/test/test_signal.py
diff --git a/Lib/test/test_pty.py b/Lib/test/test_pty.py --- a/Lib/test/test_pty.py +++ b/Lib/test/test_pty.py @@ -1,4 +1,4 @@ -from test.support import verbose, run_unittest, import_module +from test.support import verbose, run_unittest, import_module, reap_children
#Skip these tests if either fcntl or termios is not available fcntl = import_module('fcntl') @@ -195,7 +195,10 @@ # pty.fork() passed.
def test_main(verbose=None):
- run_unittest(PtyTest)
- try:
run_unittest(PtyTest)
- finally:
reap_children()
if name == "main": test_main() diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py @@ -484,9 +484,12 @@ self.assertEqual(self.hndl_called, True)
def test_main():
- support.run_unittest(BasicSignalTests, InterProcessSignalTests,
WakeupSignalTests, SiginterruptTest,
ItimerTest, WindowsSignalTests)
- try:
support.run_unittest(BasicSignalTests, InterProcessSignalTests,
WakeupSignalTests, SiginterruptTest,
ItimerTest, WindowsSignalTests)
- finally:
support.reap_children()
if name == "main":
-- Repository URL: http://hg.python.org/cpython
- Previous message: [Python-checkins] cpython (3.1): Call reap_children() where appropriate
- Next message: [Python-checkins] cpython (merge 3.2 -> default): Merge
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]