diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-04 22:53:49 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-04 22:53:49 +0200 |
commit | edf83ba036d27d56f63513a434766ce129f38610 (patch) | |
tree | b554747ed654da3b5b67c873dad078dacf7f132e /Lib/test/test_signal.py | |
parent | 73057c786b8b170dd51ca51aba30e83130b7eb74 (diff) | |
download | cpython-edf83ba036d27d56f63513a434766ce129f38610.tar.gz |
Issue #12469: partial revert of 024827a9db64, freebsd6 thread initialization
* Don't create a thread at startup anymore to initialize the pthread library:
it changes the behaviour of many functions related to signal handling like
sigwait()
* Reenable test_sigtimedwait_poll() on FreeBSD 6
Diffstat (limited to 'Lib/test/test_signal.py')
-rw-r--r-- | Lib/test/test_signal.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py index ebdd3bcd76..1d02141b40 100644 --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py @@ -670,9 +670,6 @@ class PendingSignalsTests(unittest.TestCase): @unittest.skipUnless(hasattr(signal, 'sigtimedwait'), 'need signal.sigtimedwait()') - # issue #12303: sigtimedwait() takes 30 seconds on FreeBSD 6 (kernel bug) - @unittest.skipIf(sys.platform =='freebsd6', - "sigtimedwait() with a null timeout doens't work on FreeBSD 6") def test_sigtimedwait_poll(self): # check that polling with sigtimedwait works self.wait_helper(signal.SIGALRM, ''' |