From: Muhammad Omair Javaid Date: Mon, 4 Oct 2021 06:49:04 +0000 (+0500) Subject: [LLDB] Skip TestClangREPL.py on Arm/AArch64 Linux X-Git-Tag: upstream/15.0.7~29758 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=71ad0f9d4e5b63ccee1ee4146525940849d2c962;p=platform%2Fupstream%2Fllvm.git [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. --- 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"""