diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-04 20:53:49 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-04 20:53:49 (GMT) |
commit | 87e78ce1c65c299e5eeb07815a6b6e54a64aa673 (patch) | |
tree | 5636b01a03a6081a5ba91f66f92240aa27e5076e /Lib/test/test_signal.py | |
parent | 8fbfc12f5e156e753f40853254ed3fb57be03639 (diff) | |
download | cpython-87e78ce1c65c299e5eeb07815a6b6e54a64aa673.zip cpython-87e78ce1c65c299e5eeb07815a6b6e54a64aa673.tar.gz cpython-87e78ce1c65c299e5eeb07815a6b6e54a64aa673.tar.bz2 |
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 ebdd3bc..1d02141 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, ''' |