From fc4aa76d59968a60ea91bda4b2c505e1070743ac Mon Sep 17 00:00:00 2001 From: Stefan Krah Date: Thu, 17 Jan 2013 23:29:54 +0100 Subject: Issue #11870: Skip test_3_join_in_forked_from_thread() on HP-UX. --- Lib/test/test_threading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v0.12