diff options
author | Stefan Krah <skrah@bytereef.org> | 2013-01-17 22:29:54 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2013-01-17 22:29:54 (GMT) |
commit | fc4aa76d59968a60ea91bda4b2c505e1070743ac (patch) | |
tree | 4e709a02a92d02aa1b4d88670311686c479198a3 /Lib | |
parent | 175df1eeec334cbf1a8846835898424f287dd372 (diff) | |
download | cpython-fc4aa76d59968a60ea91bda4b2c505e1070743ac.zip cpython-fc4aa76d59968a60ea91bda4b2c505e1070743ac.tar.gz cpython-fc4aa76d59968a60ea91bda4b2c505e1070743ac.tar.bz2 |
Issue #11870: Skip test_3_join_in_forked_from_thread() on HP-UX.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_threading.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index bb8d9b6..11e63d3 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -452,7 +452,7 @@ class ThreadJoinOnShutdown(BaseTestCase): # problems with some operating systems (issue #3863): skip problematic tests # on platforms known to behave badly. platforms_to_skip = ('freebsd4', 'freebsd5', 'freebsd6', 'netbsd5', - 'os2emx') + 'os2emx', 'hp-ux11') def _run_and_join(self, script): script = """if 1: |