diff options
author | Tamas Berghammer <tberghammer@google.com> | 2017-07-27 12:01:32 +0000 |
---|---|---|
committer | Tamas Berghammer <tberghammer@google.com> | 2017-07-27 12:01:32 +0000 |
commit | b3ad17fbf73e5d19f4449125d0e8d1c1c3862643 (patch) | |
tree | efe5cc9683c7e70ba524420c6aeeaa15f5832e3d /lldb/packages/Python/lldbsuite/test | |
parent | 8e82af2be6bdad01577ee23a971fd296da942400 (diff) | |
download | bcm5719-llvm-b3ad17fbf73e5d19f4449125d0e8d1c1c3862643.tar.gz bcm5719-llvm-b3ad17fbf73e5d19f4449125d0e8d1c1c3862643.zip |
XFAIL/XFlakey some tests what become very flakey on the Linux buildbot
llvm-svn: 309265
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
2 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/n_watch_n_break/TestConcurrentNWatchNBreak.py b/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/n_watch_n_break/TestConcurrentNWatchNBreak.py index b9a7c5f568c..0c47d7d32e7 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/n_watch_n_break/TestConcurrentNWatchNBreak.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/n_watch_n_break/TestConcurrentNWatchNBreak.py @@ -16,6 +16,7 @@ class ConcurrentNWatchNBreak(ConcurrentEventsBase): @skipIfRemoteDueToDeadlock # Atomic sequences are not supported yet for MIPS in LLDB. @skipIf(triple='^mips') + @expectedFailureAll(oslist=["linux"]) # Very flakey def test(self): """Test with 5 watchpoint and breakpoint threads.""" self.build(dictionary=self.getBuildFlags()) diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_breakpoint/TestConcurrentTwoWatchpointsOneBreakpoint.py b/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_breakpoint/TestConcurrentTwoWatchpointsOneBreakpoint.py index 4b3c35ea8e6..3b74f1601d6 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_breakpoint/TestConcurrentTwoWatchpointsOneBreakpoint.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_breakpoint/TestConcurrentTwoWatchpointsOneBreakpoint.py @@ -16,6 +16,7 @@ class ConcurrentTwoWatchpointsOneBreakpoint(ConcurrentEventsBase): @skipIfRemoteDueToDeadlock # Atomic sequences are not supported yet for MIPS in LLDB. @skipIf(triple='^mips') + @expectedFlakeyLinux def test(self): """Test two threads that trigger a watchpoint and one breakpoint thread. """ self.build(dictionary=self.getBuildFlags()) |