diff options
author | Michal Gorny <mgorny@gentoo.org> | 2019-05-15 12:13:20 +0000 |
---|---|---|
committer | Michal Gorny <mgorny@gentoo.org> | 2019-05-15 12:13:20 +0000 |
commit | 9c7188a08a929832177505a3d2f9571f69ee5e40 (patch) | |
tree | 21eafd30016fe0a6b30d1410a5c4a78dc3474817 /lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_threads | |
parent | dbc01b4fdc8e9561f9f4644b5b1c798321001890 (diff) | |
download | bcm5719-llvm-9c7188a08a929832177505a3d2f9571f69ee5e40.tar.gz bcm5719-llvm-9c7188a08a929832177505a3d2f9571f69ee5e40.zip |
[lldb] [test] Mark frequently failing flaky tests skipped on NetBSD
llvm-svn: 360767
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_threads')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py index 667ed56eca7..40f18002c64 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py @@ -23,7 +23,7 @@ class WatchpointForMultipleThreadsTestCase(TestBase): @expectedFailureAll( oslist=["windows"], bugnumber="llvm.org/pr24446: WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows") - @expectedFailureNetBSD + @skipIfNetBSD def test_watchpoint_before_thread_start(self): """Test that we can hit a watchpoint we set before starting another thread""" self.do_watchpoint_test("Before running the thread") @@ -31,7 +31,7 @@ class WatchpointForMultipleThreadsTestCase(TestBase): @expectedFailureAll( oslist=["windows"], bugnumber="llvm.org/pr24446: WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows") - @expectedFailureNetBSD + @skipIfNetBSD def test_watchpoint_after_thread_start(self): """Test that we can hit a watchpoint we set after starting another thread""" self.do_watchpoint_test("After running the thread") |