From 71ad0f9d4e5b63ccee1ee4146525940849d2c962 Mon Sep 17 00:00:00 2001 From: Muhammad Omair Javaid Date: Mon, 4 Oct 2021 11:49:04 +0500 Subject: [PATCH] [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. --- lldb/test/API/repl/clang/TestClangREPL.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/test/API/repl/clang/TestClangREPL.py b/lldb/test/API/repl/clang/TestClangREPL.py index 6fd89a0..9ad67af 100644 --- a/lldb/test/API/repl/clang/TestClangREPL.py +++ b/lldb/test/API/repl/clang/TestClangREPL.py @@ -22,6 +22,7 @@ class TestCase(PExpectTest): # 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""" -- 2.7.4