From 7512a9068d372c58ada8f88296217633d3377092 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Mon, 1 Mar 2010 06:01:02 +0000 Subject: Fix test to be skipped on windows. --- Lib/test/test_thread.py | 6 ++---- 1 file 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 -- cgit v0.12