From: R. David Murray Date: Sat, 17 Apr 2010 21:59:26 +0000 (+0000) Subject: Issue #8263: On freebsd6 the unittest 'break' test stops regrtest; skip it. X-Git-Tag: v2.7b2~259 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb4812fb59b5f41341e9dff8afc3ea7665b07d02;p=python Issue #8263: On freebsd6 the unittest 'break' test stops regrtest; skip it. This is presumably related to issue 3864, and appears to be due to a platform bug on freebsd6. --- diff --git a/Lib/unittest/test/test_break.py b/Lib/unittest/test/test_break.py index c1c5e6dc16..cc3e2827f4 100644 --- a/Lib/unittest/test/test_break.py +++ b/Lib/unittest/test/test_break.py @@ -12,6 +12,8 @@ import unittest @unittest.skipUnless(hasattr(os, 'kill'), "Test requires os.kill") @unittest.skipIf(sys.platform =="win32", "Test cannot run on Windows") +@unittest.skipIf(sys.platform == 'freebsd6', "Test kills regrtest on freebsd6 " + "if threads have been used") class TestBreak(unittest.TestCase): def setUp(self):