[Lldb-commits] [lldb] 97b8cec - [lldb][lldb-dap] Skip runInTerminalWithObjectEnv test on Windows

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 25 02:31:30 PDT 2025


Author: David Spickett
Date: 2025-06-25T09:31:06Z
New Revision: 97b8cec789fe3b8558a6d2b7fac269c5606ab4a3

URL: https://github.com/llvm/llvm-project/commit/97b8cec789fe3b8558a6d2b7fac269c5606ab4a3
DIFF: https://github.com/llvm/llvm-project/commit/97b8cec789fe3b8558a6d2b7fac269c5606ab4a3.diff

LOG: [lldb][lldb-dap] Skip runInTerminalWithObjectEnv test on Windows

It is failing on our Windows on Arm bot:
AssertionError: False is not true : launch failed (Unimplemented)

Given that all the others are skipped on Windows, I assume this
failure is expected too.

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py b/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py
index 3d07cd8b20e28..8c9468d6243c7 100644
--- a/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py
+++ b/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py
@@ -73,6 +73,7 @@ def test_runInTerminal(self):
 
         self.continue_to_exit()
 
+    @skipIfWindows
     @skipIf(oslist=["linux"], archs=no_match(["x86_64"]))
     def test_runInTerminalWithObjectEnv(self):
         """


        


More information about the lldb-commits mailing list