History log of /external/python/cpython2/Lib/test/fork_wait.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
2623a37852153363335956afab010cb0beb7e74e 21-Nov-2010 Ezio Melotti <ezio.melotti@gmail.com> Merged revisions 86596 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line

#9424: Replace deprecated assert* methods in the Python test suite.
........
/external/python/cpython2/Lib/test/fork_wait.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/fork_wait.py
c5f05e45cffa16f45f1332cec531c045893f928f 23-Feb-2008 Christian Heimes <christian@cheimes.de> Patch #2167 from calvin: Remove unused imports
/external/python/cpython2/Lib/test/fork_wait.py
84bc19a453905e611dfc5d112a84604929b50cb5 07-Jul-2006 Neal Norwitz <nnorwitz@gmail.com> Restore rev 47014:

The hppa ubuntu box sometimes hangs forever in these tests. My guess
is that the wait is failing for some reason. Use WNOHANG, so we won't
wait until the buildbot kills the test suite.

I haven't been able to reproduce the failure, so I'm not sure if
this will help or not. Hopefully, this change will cause the test
to fail, rather than hang. That will be better since we will get
the rest of the test results. It may also help us debug the real problem.

*** The reason this originally failed was because there were many
zombie children outstanding before rev 47158 cleaned them up.
There are still hangs in test_subprocess that need to be addressed,
but that will take more work. This should close some holes.
/external/python/cpython2/Lib/test/fork_wait.py
0f51cf6e0473919d83da7ce3a7d23cd7d1ea0594 18-Jun-2006 Neal Norwitz <nnorwitz@gmail.com> Revert 47014 until it is more robust
/external/python/cpython2/Lib/test/fork_wait.py
10b835c40155bf3ff79839377a869742970e064f 18-Jun-2006 Neal Norwitz <nnorwitz@gmail.com> The hppa ubuntu box sometimes hangs forever in these tests. My guess
is that the wait is failing for some reason. Use WNOHANG, so we won't
wait until the buildbot kills the test suite.

I haven't been able to reproduce the failure, so I'm not sure if
this will help or not. Hopefully, this change will cause the test
to fail, rather than hang. That will be better since we will get
the rest of the test results. It may also help us debug the real problem.
/external/python/cpython2/Lib/test/fork_wait.py
05a45599d7c7e7584a80d7ef70dc47e984664619 20-Mar-2006 Neal Norwitz <nnorwitz@gmail.com> Patch #1309579: wait3 and wait4 were added to the posix module by Chad J. Schroeder.

This was a fair amount of rework of the patch. Refactored test_fork1 so it
could be reused by the new tests for wait3/4. Also made them into new style
unittests (derive from unittest.TestCase).
/external/python/cpython2/Lib/test/fork_wait.py