Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit feedda2

Browse files
committed
Avoid hanging the test on netbsd5.
1 parent 0f61dd0 commit feedda2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/test/test_threading.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,8 @@ def test_3_join_in_forked_from_thread(self):
485485

486486
# Skip platforms with known problems forking from a worker thread.
487487
# See http://bugs.python.org/issue3863.
488-
if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'os2emx'):
488+
if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'netbsd5',
489+
'os2emx'):
489490
raise unittest.SkipTest('due to known OS bugs on ' + sys.platform)
490491
script = """if 1:
491492
main_thread = threading.current_thread()

0 commit comments

Comments
 (0)