diff options
author | Pavel Labath <labath@google.com> | 2017-11-08 11:51:49 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-11-08 11:51:49 +0000 |
commit | d9f6f5f44d5806496dcc05dd086a15f71e4292e1 (patch) | |
tree | abc11ee4f6450e59621156fbb553e6a32713c7be /lldb/packages/Python/lldbsuite/test | |
parent | d60a3cc395c1cce4f3a205679f3bd8add15991cb (diff) | |
download | bcm5719-llvm-d9f6f5f44d5806496dcc05dd086a15f71e4292e1.tar.gz bcm5719-llvm-d9f6f5f44d5806496dcc05dd086a15f71e4292e1.zip |
Xfail TestConcurrentTwoWatchpointsOneSignal on arm
r317561 exposed an interesting bug (pr35228) in handling of simultaneous
watchpoint hits. Disabling the test until we can get that fixed.
llvm-svn: 317683
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_signal/TestConcurrentTwoWatchpointsOneSignal.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_signal/TestConcurrentTwoWatchpointsOneSignal.py b/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_signal/TestConcurrentTwoWatchpointsOneSignal.py index 752b8877dee..31b583c1a65 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_signal/TestConcurrentTwoWatchpointsOneSignal.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_signal/TestConcurrentTwoWatchpointsOneSignal.py @@ -15,6 +15,7 @@ class ConcurrentTwoWatchpointsOneSignal(ConcurrentEventsBase): @skipIfFreeBSD # timing out on buildbot # Atomic sequences are not supported yet for MIPS in LLDB. @skipIf(triple='^mips') + @expectedFailureAll(bugnumber="llvm.org/pr35228", archs=["arm", "aarch64"]) @add_test_categories(["watchpoint"]) def test(self): """Test two threads that trigger a watchpoint and one signal thread. """ |