[Lldb-commits] [lldb] 12a2507 - Fix TestVSCode_launch test

Walter Erquinigo via lldb-commits lldb-commits at lists.llvm.org
Wed Apr 21 14:33:42 PDT 2021


Author: Walter Erquinigo
Date: 2021-04-21T14:33:34-07:00
New Revision: 12a25076463d0b04b535d07982d7420971bcea3e

URL: https://github.com/llvm/llvm-project/commit/12a25076463d0b04b535d07982d7420971bcea3e
DIFF: https://github.com/llvm/llvm-project/commit/12a25076463d0b04b535d07982d7420971bcea3e.diff

LOG: Fix TestVSCode_launch test

Broken in https://lab.llvm.org/buildbot/#/builders/96/builds/6933

We don't really need to run this test on arm, but would be worth fixing
it later.

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py b/lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
index 6f65a7250f1e6..c40e7e2dd4aa7 100644
--- a/lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
+++ b/lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
@@ -293,6 +293,7 @@ def test_environment(self):
 
     @skipIfWindows
     @skipIfRemote
+    @skipIf(archs=["arm", "aarch64"]) # failed run https://lab.llvm.org/buildbot/#/builders/96/builds/6933
     def test_commands(self):
         '''
             Tests the "initCommands", "preRunCommands", "stopCommands",


        


More information about the lldb-commits mailing list