diff options
author | Zachary Turner <zturner@google.com> | 2016-08-12 17:15:38 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-08-12 17:15:38 +0000 |
commit | b6958a888e9e2faff8c368f383e6efac817a06d6 (patch) | |
tree | e91d11aecb0fa6dad4126652ba7ced21b9a1dd0a /lldb/packages/Python/lldbsuite/test | |
parent | 980a935e27f14ae7b3a85bb4b4821e8730f6c673 (diff) | |
download | bcm5719-llvm-b6958a888e9e2faff8c368f383e6efac817a06d6.tar.gz bcm5719-llvm-b6958a888e9e2faff8c368f383e6efac817a06d6.zip |
Disable TestThreadSpecificBpPlusCondition on Windows.
Test frequently times out stalling the test runner.
llvm-svn: 278529
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 ccb58c965b3..ec5719d730d 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): |