diff options
author | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2019-12-27 17:01:52 +0500 |
---|---|---|
committer | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2019-12-27 17:01:58 +0500 |
commit | e25e3d75850113b90314606207b092c5bd707c4f (patch) | |
tree | 79d3114d5d66bfff67da56feeb7eca29573fdb82 /lldb/packages/Python/lldbsuite | |
parent | 2e5a75581c7636fb223ebda6297f7be62ffe6b1e (diff) | |
download | bcm5719-llvm-e25e3d75850113b90314606207b092c5bd707c4f.tar.gz bcm5719-llvm-e25e3d75850113b90314606207b092c5bd707c4f.zip |
[lldb] Silent random xpass on aarch64-linux buildbot
This patch adds skipif decorator to TestWatchLocationWithWatchSet.py.
Decorator will trigger for aarch64-linux as this test passes randomly
causing buildbot failure.
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/TestWatchLocationWithWatchSet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/TestWatchLocationWithWatchSet.py b/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/TestWatchLocationWithWatchSet.py index b9b11e4b0c5..25ad731d77c 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/TestWatchLocationWithWatchSet.py +++ b/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/TestWatchLocationWithWatchSet.py @@ -27,7 +27,7 @@ class WatchLocationUsingWatchpointSetTestCase(TestBase): # Build dictionary to have unique executable names for each test # method. - @expectedFailureAll( + @skipIf( oslist=["linux"], archs=[ 'aarch64', |