diff options
author | Raymond Hettinger <python@rcn.com> | 2006-03-25 12:15:04 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2006-03-25 12:15:04 (GMT) |
commit | c4e94b90a84a1127078bdb9f63707eb71fedece3 (patch) | |
tree | 51d3913a6268f8f074a5492dd8aecc12f3033500 /Lib/test/test_queue.py | |
parent | ccc7bb4ef296fecb01c4cc7266dd0ca95151e893 (diff) | |
download | cpython-c4e94b90a84a1127078bdb9f63707eb71fedece3.zip cpython-c4e94b90a84a1127078bdb9f63707eb71fedece3.tar.gz cpython-c4e94b90a84a1127078bdb9f63707eb71fedece3.tar.bz2 |
Don't decrement below zero. And add more tests.
Diffstat (limited to 'Lib/test/test_queue.py')
-rw-r--r-- | Lib/test/test_queue.py | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/Lib/test/test_queue.py b/Lib/test/test_queue.py index 77a1c9d..b3f24df 100644 --- a/Lib/test/test_queue.py +++ b/Lib/test/test_queue.py @@ -228,6 +228,9 @@ def worker(q): global cum while True: x = q.get() + if x is None: + q.task_done() + return cumlock.acquire() try: cum += x @@ -239,18 +242,29 @@ def QueueJoinTest(q): global cum cum = 0 for i in (0,1): - t = threading.Thread(target=worker, args=(q,)) - t.setDaemon(True) - t.start() + threading.Thread(target=worker, args=(q,)).start() for i in xrange(100): q.put(i) q.join() verify(cum==sum(range(100)), "q.join() did not block until all tasks were done") + for i in (0,1): + q.put(None) # instruct the threads to close + q.join() # verify that you can join twice + +def QueueTaskDoneTest(q) + try: + q.task_done() + except ValueError: + pass + else: + raise TestFailed("Did not detect task count going negative") def test(): q = Queue.Queue() + QueueTaskDoneTest(q) QueueJoinTest(q) QueueJoinTest(q) + QueueTaskDoneTest(q) q = Queue.Queue(QUEUE_SIZE) # Do it a couple of times on the same queue |