History log of /external/python/cpython2/Lib/test/test_thread.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
20c8cd997458b0313b2a13c94de0889a4a7f1c80 08-Mar-2016 Martin Panter <vadmium+py@gmail.com> Issue #26456: Force all child threads to terminate in TestForkInThread
/external/python/cpython2/Lib/test/test_thread.py
1f70221b861a3714735251d57695b2f472d0599b 10-Dec-2013 Zachary Ware <zachary.ware@gmail.com> Issue #19572: More silently skipped tests explicitly skipped.
/external/python/cpython2/Lib/test/test_thread.py
19e9beb2db3d3e04e4dd08fafe5720fe0659a965 23-Apr-2012 Benjamin Peterson <benjamin@python.org> sleep here
/external/python/cpython2/Lib/test/test_thread.py
b6e21a0725bdbcf56d232b2be72998934438422d 02-Apr-2012 Benjamin Peterson <benjamin@python.org> remove uneeded line
/external/python/cpython2/Lib/test/test_thread.py
f73813a8bbb55ac725720f4d3839b51f992f1f3f 02-Apr-2012 Benjamin Peterson <benjamin@python.org> prevent writing to stderr from messing up the exception state (closes #14474)
/external/python/cpython2/Lib/test/test_thread.py
6a10281d3359de890519c23d0318742018c843a3 28-Apr-2010 Victor Stinner <victor.stinner@haypocalc.com> 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
/external/python/cpython2/Lib/test/test_thread.py
2e6d2622bd793c0eda9e838bb12d98b02ab0db18 20-Mar-2010 Florent Xicluna <florent.xicluna@gmail.com> #8178 Cleanup the threads after test_thread.TestForkInThread.
/external/python/cpython2/Lib/test/test_thread.py
7512a9068d372c58ada8f88296217633d3377092 01-Mar-2010 Gregory P. Smith <greg@mad-scientist.com> Fix test to be skipped on windows.
/external/python/cpython2/Lib/test/test_thread.py
9e5d1327f8a6f3a266b76118e0c660c7bcb12ce9 01-Mar-2010 Gregory P. Smith <greg@mad-scientist.com> Issue #7242: On Solaris 9 and earlier calling os.fork() from within a
thread could raise an incorrect RuntimeError about not holding the import
lock. The import lock is now reinitialized after fork.
/external/python/cpython2/Lib/test/test_thread.py
c98efe05007a7ec585518ba640221fb718fa0748 06-Nov-2009 Antoine Pitrou <solipsis@pitrou.net> Issue #7270: Add some dedicated unit tests for multi-thread synchronization
primitives such as Lock, RLock, Condition, Event and Semaphore.
/external/python/cpython2/Lib/test/test_thread.py
59c44f36e0a575671c0e8dab6a9de88666e481b0 30-Oct-2009 Antoine Pitrou <solipsis@pitrou.net> Issue #7222: Make thread "reaping" more reliable so that reference
leak-chasing test runs give sensible results. The previous method of
reaping threads could return successfully while some Thread objects were
still referenced. This also introduces a new private function:
:func:hread._count().
/external/python/cpython2/Lib/test/test_thread.py
b5cf8a059c24a47e744fa22cd8628425f91908fd 23-Oct-2009 Antoine Pitrou <solipsis@pitrou.net> Issue #7194: test_thread could try to release an unacquired mutex (and fail).
/external/python/cpython2/Lib/test/test_thread.py
a14585308af777aa64ec7100472d3c3e2961a6e7 18-Mar-2008 Jeffrey Yasskin <jyasskin@gmail.com> Speed test_thread up from 51.328s to 0.081s by reducing its sleep times. We
still sleep at all to make it likely that all threads are active at the same
time.
/external/python/cpython2/Lib/test/test_thread.py
66865d2ebd5a877523dbc87be2d86aafb3cdc59a 13-Mar-2008 Brett Cannon <bcannon@gmail.com> Move test_thread over to unittest. Commits GHOP 237.

Thanks Benjamin Peterson for the patch.
/external/python/cpython2/Lib/test/test_thread.py
93e3ecb1f4b5a0ee85756187e3011b2b214df443 13-Jun-2006 Andrew MacIntyre <andymac@bullseye.apana.org.au> Increase the small thread stack size to get the test
to pass reliably on the one buildbot that insists on
more than 32kB of thread stack.
/external/python/cpython2/Lib/test/test_thread.py
ef7fe5f228292733965c87b99d50a21d64c6d196 13-Jun-2006 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/test/test_thread.py
a7090dfc2c97a788a8c8c63975ee54c261d03998 13-Jun-2006 Andrew MacIntyre <andymac@bullseye.apana.org.au> fix exception usage
/external/python/cpython2/Lib/test/test_thread.py
9291332de137141057591386b4ba449ae3a5ed48 13-Jun-2006 Andrew MacIntyre <andymac@bullseye.apana.org.au> Patch #1454481: Make thread stack size runtime tunable.

Heavily revised, comprising revisions:
46640 - original trunk revision (backed out in r46655)
46647 - markup fix (backed out in r46655)
46692:46918 merged from branch aimacintyre-sf1454481

branch tested on buildbots (Windows buildbots had problems
not related to these changes).
/external/python/cpython2/Lib/test/test_thread.py
28eeefe566d77cd3af3d675c4f2216c5033fe538 05-Jun-2006 Tim Peters <tim.peters@gmail.com> Revert revisions:

46640 Patch #1454481: Make thread stack size runtime tunable.
46647 Markup fix

The first is causing many buildbots to fail test runs, and there
are multiple causes with seemingly no immediate prospects for
repairing them. See python-dev discussion.

Note that a branch can (and should) be created for resolving these
problems, like

svn copy svn+ssh://svn.python.org/python/trunk -r46640 svn+ssh://svn.python.org/python/branches/NEW_BRANCH

followed by merging rev 46647 to the new branch.
/external/python/cpython2/Lib/test/test_thread.py
6539d2d3c758b507f10779e218d52d6c9f355025 04-Jun-2006 Andrew MacIntyre <andymac@bullseye.apana.org.au> Patch #1454481: Make thread stack size runtime tunable.
/external/python/cpython2/Lib/test/test_thread.py
04f357cffef6d764f2f0ff2671dabde75ec250d1 23-Jul-2002 Barry Warsaw <barry@python.org> Get rid of relative imports in all unittests. Now anything that
imports e.g. test_support must do so using an absolute package name
such as "import test.test_support" or "from test import test_support".

This also updates the README in Lib/test, and gets rid of the
duplicate data dirctory in Lib/test/data (replaced by
Lib/email/test/data).

Now Tim and Jack can have at it. :)
/external/python/cpython2/Lib/test/test_thread.py
20882dd1742310c8cf6858354ecb150810adb95c 16-Feb-2002 Tim Peters <tim.peters@gmail.com> SF bug #516372: test_thread: unhandled exc. in thread
Fix exit races in test_thread.py and test_threaded_import.py.
I suspect the bug is provokable only under Linux (where child threads
seem to get lots of cycles before they get killed after the main thread
exits), or on multi-processor machines running other OSes.
Bugfix candidate.
/external/python/cpython2/Lib/test/test_thread.py
f785042433f0c43ed1ba2ba0388fc51d79bcf5c3 17-Jan-2001 Fredrik Lundh <fredrik@pythonware.com> a bold attempt to fix things broken by MAL's verify patch: import
'verify' iff it's used by a test module...
/external/python/cpython2/Lib/test/test_thread.py
3661908a6ac75026e4504d9f62a6ac2e2fb2ec5e 17-Jan-2001 Marc-André Lemburg <mal@egenix.com> This patch removes all uses of "assert" in the regression test suite
and replaces them with a new API verify(). As a result the regression
suite will also perform its tests in optimization mode.

Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum.
/external/python/cpython2/Lib/test/test_thread.py
004d5e6880940ddbb38460986ac62ee0f1bae97d 23-Oct-2000 Fred Drake <fdrake@acm.org> Make reindent.py happy (convert everything to 4-space indents!).
/external/python/cpython2/Lib/test/test_thread.py
b26a1b4e2b99f4473c2133a2206b782a7fa57932 20-May-1998 Guido van Rossum <guido@python.org> Use random instead of whrandom.
/external/python/cpython2/Lib/test/test_thread.py
c864ad695f9831340d10b1b4161524a58780422f 19-Jul-1997 Guido van Rossum <guido@python.org> Nit: round delays to 0.1 second.
/external/python/cpython2/Lib/test/test_thread.py
5b456645fb69f63727bc260159bfeb2d8e95ec69 13-Jan-1997 Barry Warsaw <barry@python.org> Use the new regrtest harness
/external/python/cpython2/Lib/test/test_thread.py
af0a1a65308eee025c2a25d218d3de48de4d6a83 17-Dec-1996 Barry Warsaw <barry@python.org> (test_thread.py): modifications to quiet it up when not running as a script.

(testall.py): added test_thread to the list of regression tests.
/external/python/cpython2/Lib/test/test_thread.py
d3b6842d9fe08e25869908a60a2068db2a5737a7 23-May-1994 Guido van Rossum <guido@python.org> added barrier test (by Tim Peters)
/external/python/cpython2/Lib/test/test_thread.py
cc54417d1a5458304718e15379546344c17950dd 14-Apr-1994 Guido van Rossum <guido@python.org> Module to test threads
/external/python/cpython2/Lib/test/test_thread.py