summaryrefslogtreecommitdiffstats
path: root/Lib/test/fork_wait.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-04-27 23:55:59 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-04-27 23:55:59 (GMT)
commit6a10281d3359de890519c23d0318742018c843a3 (patch)
tree71fdda13733f42f287602b72b60260cdc9afa6ba /Lib/test/fork_wait.py
parentc73a05f775013980a2a0de1c2a65b8542ee0bfa6 (diff)
downloadcpython-6a10281d3359de890519c23d0318742018c843a3.zip
cpython-6a10281d3359de890519c23d0318742018c843a3.tar.gz
cpython-6a10281d3359de890519c23d0318742018c843a3.tar.bz2
Issue #7449, last part (11): fix many tests if thread support is disabled
* Use try/except ImportError or test_support.import_module() to import thread and threading modules * Add @unittest.skipUnless(threading, ...) to testcases using threads
Diffstat (limited to 'Lib/test/fork_wait.py')
-rw-r--r--Lib/test/fork_wait.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/fork_wait.py b/Lib/test/fork_wait.py
index 3c75de3..cc51f89 100644
--- a/Lib/test/fork_wait.py
+++ b/Lib/test/fork_wait.py
@@ -1,6 +1,6 @@
"""This test case provides support for checking forking and wait behavior.
-To test different wait behavior, overrise the wait_impl method.
+To test different wait behavior, override the wait_impl method.
We want fork1() semantics -- only the forking thread survives in the
child after a fork().
@@ -12,7 +12,9 @@ While BeOS doesn't officially support fork and native threading in
the same application, the present example should work just fine. DC
"""
-import os, sys, time, thread, unittest
+import os, sys, time, unittest
+import test.test_support as test_support
+thread = test_support.import_module('thread')
LONGSLEEP = 2
SHORTSLEEP = 0.5