[Lldb-commits] [lldb] 5dfec67 - [LLDB] Skip TestInterruptBacktrace.py on Arm/Linux
Muhammad Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Mon May 22 03:54:05 PDT 2023
Author: Muhammad Omair Javaid
Date: 2023-05-22T14:53:35+04:00
New Revision: 5dfec676c3ab4fa2b7ea95d203f97faf7768b77f
URL: https://github.com/llvm/llvm-project/commit/5dfec676c3ab4fa2b7ea95d203f97faf7768b77f
DIFF: https://github.com/llvm/llvm-project/commit/5dfec676c3ab4fa2b7ea95d203f97faf7768b77f.diff
LOG: [LLDB] Skip TestInterruptBacktrace.py on Arm/Linux
TestInterruptBacktrace.py started randonmly failing on Arm/Linux
buildbot since e19387e6936c. This patch marks it skipped.
Differential Revision: https://reviews.llvm.org/D150236
Added:
Modified:
lldb/test/API/functionalities/bt-interrupt/TestInterruptBacktrace.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/bt-interrupt/TestInterruptBacktrace.py b/lldb/test/API/functionalities/bt-interrupt/TestInterruptBacktrace.py
index 57a994d11035d..8d4161355122c 100644
--- a/lldb/test/API/functionalities/bt-interrupt/TestInterruptBacktrace.py
+++ b/lldb/test/API/functionalities/bt-interrupt/TestInterruptBacktrace.py
@@ -12,6 +12,7 @@ class TestInterruptingBacktrace(TestBase):
NO_DEBUG_INFO_TESTCASE = True
+ @skipIf(oslist=["linux"], archs=["arm"])
def test_backtrace_interrupt(self):
"""Use RequestInterrupt followed by stack operations
to ensure correct interrupt behavior for stacks."""
More information about the lldb-commits
mailing list