diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-18 21:02:37 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-18 21:02:37 +0000 |
commit | e1cdfd78d823c50a592a7cf67e14f0786c65ead9 (patch) | |
tree | 51ae77036c556a796e49b533400421a467fd40dc /Lib/test/test_capi.py | |
parent | 7e15845faa99b5570c1460f03c356e7a6e4d91f4 (diff) | |
download | cpython-git-e1cdfd78d823c50a592a7cf67e14f0786c65ead9.tar.gz |
Merged revisions 68547,68607,68610,68618,68621-68622,68649,68722 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68547 | kristjan.jonsson | 2009-01-12 12:09:27 -0600 (Mon, 12 Jan 2009) | 1 line
Add tests for invalid format specifiers in strftime, and for handling of invalid file descriptors in the os module.
........
r68607 | kristjan.jonsson | 2009-01-14 04:50:57 -0600 (Wed, 14 Jan 2009) | 2 lines
Re-enable all tests for windows platforms.
Also, explicitly connect to the IPV4 address. On windows platforms supporting AF_INET6, the SocketProxy would connect using socket.create_connection('localhost', port) which would cycle through all address families and try to connect. It would try connecting using AF_INET6 first and this would cause a delay of up to a second.
........
r68610 | kristjan.jonsson | 2009-01-15 03:09:13 -0600 (Thu, 15 Jan 2009) | 3 lines
Fix recently introduced test cases.
For datetime, gentoo didn't seem to mind the %e format for strftime. So, we just excercise those instead making sure that we don't crash.
For test_os, two cases were incorrect.
........
r68618 | kristjan.jonsson | 2009-01-15 11:20:21 -0600 (Thu, 15 Jan 2009) | 1 line
Issue 4929: Handle socket errors when receiving
........
r68621 | kristjan.jonsson | 2009-01-15 16:40:03 -0600 (Thu, 15 Jan 2009) | 1 line
Fix two test cases in test_os. ftruncate raises IOError unlike all the others which raise OSError. And close() on some platforms doesn't complain when given an invalid file descriptor.
........
r68622 | kristjan.jonsson | 2009-01-15 16:46:26 -0600 (Thu, 15 Jan 2009) | 1 line
Make all the invalid fd tests for os subject to the function being available.
........
r68649 | benjamin.peterson | 2009-01-16 22:39:05 -0600 (Fri, 16 Jan 2009) | 1 line
trying to find some fpathconf() settings that all unixs support...
........
r68722 | kristjan.jonsson | 2009-01-18 04:58:44 -0600 (Sun, 18 Jan 2009) | 1 line
issue 4293: make test_capi.py more robutst, it times out on some platforms, presumably waiting for threads. Lower the thread count to 16.
........
Diffstat (limited to 'Lib/test/test_capi.py')
-rw-r--r-- | Lib/test/test_capi.py | 39 |
1 files changed, 31 insertions, 8 deletions
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py index 4d37687639..bf8b8a8579 100644 --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -1,6 +1,7 @@ # Run the _testcapi module tests (tests for the Python/C API): by defn, # these are all functions _testcapi exports whose name begins with 'test_'. +from __future__ import with_statement import sys import time import random @@ -49,39 +50,61 @@ class TestPendingCalls(unittest.TestCase): if _testcapi._pending_threadfunc(callback): break; - def pendingcalls_wait(self, l, n): + def pendingcalls_wait(self, l, n, context = None): #now, stick around until l[0] has grown to 10 count = 0; while len(l) != n: #this busy loop is where we expect to be interrupted to #run our callbacks. Note that callbacks are only run on the #main thread - if False and test_support.verbose: + if False and support.verbose: print("(%i)"%(len(l),),) for i in range(1000): a = i*i + if context and not context.event.is_set(): + continue count += 1 self.failUnless(count < 10000, "timeout waiting for %i callbacks, got %i"%(n, len(l))) - if False and test_support.verbose: + if False and support.verbose: print("(%i)"%(len(l),)) def test_pendingcalls_threaded(self): - l = [] #do every callback on a separate thread - n = 32 + n = 32 #total callbacks threads = [] - for i in range(n): - t = threading.Thread(target=self.pendingcalls_submit, args = (l, 1)) + class foo(object):pass + context = foo() + context.l = [] + context.n = 2 #submits per thread + context.nThreads = n // context.n + context.nFinished = 0 + context.lock = threading.Lock() + context.event = threading.Event() + + for i in range(context.nThreads): + t = threading.Thread(target=self.pendingcalls_thread, args = (context,)) t.start() threads.append(t) - self.pendingcalls_wait(l, n) + self.pendingcalls_wait(context.l, n, context) for t in threads: t.join() + def pendingcalls_thread(self, context): + try: + self.pendingcalls_submit(context.l, context.n) + finally: + with context.lock: + context.nFinished += 1 + nFinished = context.nFinished + if False and support.verbose: + print("finished threads: ", nFinished) + if nFinished == context.nThreads: + context.event.set() + def test_pendingcalls_non_threaded(self): #again, just using the main thread, likely they will all be dispathced at #once. It is ok to ask for too many, because we loop until we find a slot. |