forked from OSchip/llvm-project
[LLDB] Skip TestGuiBasicDebug.py on Arm/AArch64 Linux
TestGuiBasicDebug.py randomly fails due to timeouts sending out false negatives on LLDB Arm and AArch64 Linux buildbots. I havnt found a reliable wayy to set pexpect timeout for this test to pass regularly. Skipping it on Arm and AArch64 Linux to silence buildbot failures.
This commit is contained in:
parent
30308d1eb9
commit
0dc9c88aa3
|
@ -14,6 +14,7 @@ class TestGuiBasicDebugCommandTest(PExpectTest):
|
|||
# PExpect uses many timeouts internally and doesn't play well
|
||||
# under ASAN on a loaded machine..
|
||||
@skipIfAsan
|
||||
@skipIf(oslist=["linux"], archs=["arm","aarch64"])
|
||||
@skipIfCursesSupportMissing
|
||||
def test_gui(self):
|
||||
self.build()
|
||||
|
|
Loading…
Reference in New Issue