Disable TestThreadSpecificBpPlusCondition on Windows.
authorZachary Turner <zturner@google.com>
Fri, 12 Aug 2016 17:15:38 +0000 (17:15 +0000)
committerZachary Turner <zturner@google.com>
Fri, 12 Aug 2016 17:15:38 +0000 (17:15 +0000)
Test frequently times out stalling the test runner.

llvm-svn: 278529

lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py

index ccb58c9..ec5719d 100644 (file)
@@ -18,7 +18,7 @@ class ThreadSpecificBreakPlusConditionTestCase(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)
 
-    @skipIfFreeBSD # test frequently times out or hangs
+    @skipIf(oslist=['windows', 'freebsd']) # test frequently times out or hangs
     @expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr18522') # hits break in another thread in testrun
     @add_test_categories(['pyapi'])
     def test_python(self):