mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Avoid hanging the test on netbsd5.
This commit is contained in:
parent
0f61dd0787
commit
feedda2bab
1 changed files with 2 additions and 1 deletions
|
@ -485,7 +485,8 @@ class ThreadJoinOnShutdown(BaseTestCase):
|
||||||
|
|
||||||
# Skip platforms with known problems forking from a worker thread.
|
# Skip platforms with known problems forking from a worker thread.
|
||||||
# See http://bugs.python.org/issue3863.
|
# See http://bugs.python.org/issue3863.
|
||||||
if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'os2emx'):
|
if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'netbsd5',
|
||||||
|
'os2emx'):
|
||||||
raise unittest.SkipTest('due to known OS bugs on ' + sys.platform)
|
raise unittest.SkipTest('due to known OS bugs on ' + sys.platform)
|
||||||
script = """if 1:
|
script = """if 1:
|
||||||
main_thread = threading.current_thread()
|
main_thread = threading.current_thread()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue