From: Zachary Turner Date: Fri, 12 Aug 2016 17:15:38 +0000 (+0000) Subject: Disable TestThreadSpecificBpPlusCondition on Windows. X-Git-Tag: llvmorg-4.0.0-rc1~12577 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b6958a888e9e2faff8c368f383e6efac817a06d6;p=platform%2Fupstream%2Fllvm.git Disable TestThreadSpecificBpPlusCondition on Windows. Test frequently times out stalling the test runner. llvm-svn: 278529 --- diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py b/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py index ccb58c9..ec5719d 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py @@ -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):