[Lldb-commits] [lldb] e25e3d7 - [lldb] Silent random xpass on aarch64-linux buildbot
Muhammad Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 27 04:08:36 PST 2019
Author: Muhammad Omair Javaid
Date: 2019-12-27T17:01:58+05:00
New Revision: e25e3d75850113b90314606207b092c5bd707c4f
URL: https://github.com/llvm/llvm-project/commit/e25e3d75850113b90314606207b092c5bd707c4f
DIFF: https://github.com/llvm/llvm-project/commit/e25e3d75850113b90314606207b092c5bd707c4f.diff
LOG: [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.
Added:
Modified:
lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/TestWatchLocationWithWatchSet.py
Removed:
################################################################################
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 b9b11e4b0c5b..25ad731d77c7 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 @@ def setUp(self):
# Build dictionary to have unique executable names for each test
# method.
- @expectedFailureAll(
+ @skipIf(
oslist=["linux"],
archs=[
'aarch64',
More information about the lldb-commits
mailing list