[Lldb-commits] [lldb] 71ad0f9 - [LLDB] Skip TestClangREPL.py on Arm/AArch64 Linux
Muhammad Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Sun Oct 3 23:50:32 PDT 2021
Author: Muhammad Omair Javaid
Date: 2021-10-04T11:50:17+05:00
New Revision: 71ad0f9d4e5b63ccee1ee4146525940849d2c962
URL: https://github.com/llvm/llvm-project/commit/71ad0f9d4e5b63ccee1ee4146525940849d2c962
DIFF: https://github.com/llvm/llvm-project/commit/71ad0f9d4e5b63ccee1ee4146525940849d2c962.diff
LOG: [LLDB] Skip TestClangREPL.py on Arm/AArch64 Linux
TestClangREPL.py has been failing randomly on Arm/AArch64 Linux
buildbot. I am marking it as skipped to reduce false alarms.
Added:
Modified:
lldb/test/API/repl/clang/TestClangREPL.py
Removed:
################################################################################
diff --git a/lldb/test/API/repl/clang/TestClangREPL.py b/lldb/test/API/repl/clang/TestClangREPL.py
index 6fd89a0264ebf..9ad67af74f9d8 100644
--- a/lldb/test/API/repl/clang/TestClangREPL.py
+++ b/lldb/test/API/repl/clang/TestClangREPL.py
@@ -22,6 +22,7 @@ def expect_repl(self, expr, substrs=[]):
# PExpect uses many timeouts internally and doesn't play well
# under ASAN on a loaded machine..
@skipIfAsan
+ @skipIf(oslist=["linux"], archs=["arm", "aarch64"]) # Randomly fails on buildbot
@skipIfEditlineSupportMissing
def test_basic_completion(self):
"""Test that we can complete a simple multiline expression"""
More information about the lldb-commits
mailing list