[Lldb-commits] [lldb] 9322e57 - [LLDB] Skip TestGuiBasicDebug.py on Arm and AArch64/Linux

Muhammad Omair Javaid via lldb-commits lldb-commits at lists.llvm.org
Wed Dec 16 04:16:51 PST 2020


Author: Muhammad Omair Javaid
Date: 2020-12-16T17:16:03+05:00
New Revision: 9322e571d7356a9a0e86aab954c3a916f0f07855

URL: https://github.com/llvm/llvm-project/commit/9322e571d7356a9a0e86aab954c3a916f0f07855
DIFF: https://github.com/llvm/llvm-project/commit/9322e571d7356a9a0e86aab954c3a916f0f07855.diff

LOG: [LLDB] Skip TestGuiBasicDebug.py on Arm and AArch64/Linux

TestGuiBasicDebug.py is intermittenly timing out on LLDB AArch64/Linux
buildbot. Putting SkipIf decorator untill root cuase is identified.

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 81067bf776e3..d2e223a57be9 100644
--- a/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py
+++ b/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py
@@ -15,7 +15,7 @@ class TestGuiBasicDebugCommandTest(PExpectTest):
     # under ASAN on a loaded machine..
     @skipIfAsan
     @skipIfCursesSupportMissing
-    @expectedFailureAll(archs=["aarch64"], oslist=["linux"])
+    @skipIf(archs=["arm", "aarch64"], oslist=["linux"])
     def test_gui(self):
         self.build()
 


        


More information about the lldb-commits mailing list