[Lldb-commits] [lldb] 0dc9c88 - [LLDB] Skip TestGuiBasicDebug.py on Arm/AArch64 Linux

Muhammad Omair Javaid via lldb-commits lldb-commits at lists.llvm.org
Wed Jul 28 03:40:55 PDT 2021


Author: Muhammad Omair Javaid
Date: 2021-07-28T15:30:48+05:00
New Revision: 0dc9c88aa38ed330ddffe92bae79d4066832c38e

URL: https://github.com/llvm/llvm-project/commit/0dc9c88aa38ed330ddffe92bae79d4066832c38e
DIFF: https://github.com/llvm/llvm-project/commit/0dc9c88aa38ed330ddffe92bae79d4066832c38e.diff

LOG: [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.

Added: 
    

Modified: 
    lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py b/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py
index beff76e9374f..e0eca428b6bd 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()


        


More information about the lldb-commits mailing list