forked from OSchip/llvm-project
[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.
This commit is contained in:
parent
32a7d60516
commit
71ad0f9d4e
|
@ -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"""
|
||||
|
|
Loading…
Reference in New Issue