summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dummy_thread.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-05-20 21:35:26 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-05-20 21:35:26 (GMT)
commitee8712cda46338d223509cc5751fd36509ad3860 (patch)
treebb9d363b4276566415457980472001c7e3ec2bed /Lib/test/test_dummy_thread.py
parent6a654814ea3f3a918935762ffdcd33ae98e00278 (diff)
downloadcpython-ee8712cda46338d223509cc5751fd36509ad3860.zip
cpython-ee8712cda46338d223509cc5751fd36509ad3860.tar.gz
cpython-ee8712cda46338d223509cc5751fd36509ad3860.tar.bz2
#2621 rename test.test_support to test.support
Diffstat (limited to 'Lib/test/test_dummy_thread.py')
-rw-r--r--Lib/test/test_dummy_thread.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/Lib/test/test_dummy_thread.py b/Lib/test/test_dummy_thread.py
index 5910458..585711f 100644
--- a/Lib/test/test_dummy_thread.py
+++ b/Lib/test/test_dummy_thread.py
@@ -10,7 +10,7 @@ import time
import queue
import random
import unittest
-from test import test_support
+from test import support
DELAY = 0 # Set > 0 when testing a module other than dummy_thread, such as
# the 'thread' module.
@@ -71,13 +71,13 @@ class LockTests(unittest.TestCase):
self.lock.acquire()
start_time = int(time.time())
_thread.start_new_thread(delay_unlock,(self.lock, DELAY))
- if test_support.verbose:
+ if support.verbose:
print()
print("*** Waiting for thread to release the lock "\
"(approx. %s sec.) ***" % DELAY)
self.lock.acquire()
end_time = int(time.time())
- if test_support.verbose:
+ if support.verbose:
print("done")
self.failUnless((end_time - start_time) >= DELAY,
"Blocking by unconditional acquiring failed.")
@@ -149,7 +149,7 @@ class ThreadTests(unittest.TestCase):
thread_count = 5
testing_queue = queue.Queue(thread_count)
- if test_support.verbose:
+ if support.verbose:
print()
print("*** Testing multiple thread creation "\
"(will take approx. %s to %s sec.) ***" % (DELAY, thread_count))
@@ -161,7 +161,7 @@ class ThreadTests(unittest.TestCase):
_thread.start_new_thread(queue_mark,
(testing_queue, local_delay))
time.sleep(DELAY)
- if test_support.verbose:
+ if support.verbose:
print('done')
self.failUnless(testing_queue.qsize() == thread_count,
"Not all %s threads executed properly after %s sec." %
@@ -172,10 +172,10 @@ def test_main(imported_module=None):
if imported_module:
_thread = imported_module
DELAY = 2
- if test_support.verbose:
+ if support.verbose:
print()
print("*** Using %s as _thread module ***" % _thread)
- test_support.run_unittest(LockTests, MiscTests, ThreadTests)
+ support.run_unittest(LockTests, MiscTests, ThreadTests)
if __name__ == '__main__':
test_main()