[Python-checkins] cpython (3.3): Issue #11870: Skip test_3_join_in_forked_from_thread() on HP-UX.

stefan.krah python-checkins at python.org
Thu Jan 17 23:37:27 CET 2013


http://hg.python.org/cpython/rev/cd54b48946ca
changeset:   81566:cd54b48946ca
branch:      3.3
parent:      81563:c6276dea445c
user:        Stefan Krah <skrah at bytereef.org>
date:        Thu Jan 17 23:29:54 2013 +0100
summary:
  Issue #11870: Skip test_3_join_in_forked_from_thread() on HP-UX.

files:
  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
--- a/Lib/test/test_threading.py
+++ b/Lib/test/test_threading.py
@@ -452,7 +452,7 @@
     # 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:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list