diff options
author | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2021-07-28 15:28:53 +0500 |
---|---|---|
committer | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2021-07-28 15:30:48 +0500 |
commit | 0dc9c88aa38ed330ddffe92bae79d4066832c38e (patch) | |
tree | 170796bcc526094a6acba08dc7ba1953945de165 | |
parent | 30308d1eb966afa35ee2fd5c5b47b17eb0382896 (diff) | |
download | llvm-0dc9c88aa38ed330ddffe92bae79d4066832c38e.zip llvm-0dc9c88aa38ed330ddffe92bae79d4066832c38e.tar.gz llvm-0dc9c88aa38ed330ddffe92bae79d4066832c38e.tar.bz2 |
[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.
-rw-r--r-- | lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py b/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py index beff76e..e0eca42 100644 --- a/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py +++ b/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py @@ -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() |