diff options
| -rw-r--r-- | Lib/test/test_thread.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/test/test_thread.py b/Lib/test/test_thread.py index 4e707e5..b476317 100644 --- a/Lib/test/test_thread.py +++ b/Lib/test/test_thread.py @@ -201,11 +201,9 @@ class TestForkInThread(unittest.TestCase): def setUp(self): self.read_fd, self.write_fd = os.pipe() + @unittest.skipIf(sys.platform.startswith('win'), + "This test is only appropriate for POSIX-like systems.") def test_forkinthread(self): - if sys.platform.startswith('win'): - from test.test_support import TestSkipped - raise TestSkipped("This test is only appropriate for " - "POSIX-like systems.") def thread1(): try: pid = os.fork() # fork in a thread |
