[Lldb-commits] [lldb] 98c9c1a - [lldb][test] Disable new lldb-dap test on non-x86

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Tue Oct 8 07:29:24 PDT 2024


Author: David Spickett
Date: 2024-10-08T14:29:08Z
New Revision: 98c9c1a4d2d4fc41b34f73e4630de435c9c0c396

URL: https://github.com/llvm/llvm-project/commit/98c9c1a4d2d4fc41b34f73e4630de435c9c0c396
DIFF: https://github.com/llvm/llvm-project/commit/98c9c1a4d2d4fc41b34f73e4630de435c9c0c396.diff

LOG: [lldb][test] Disable new lldb-dap test on non-x86

Guessing that this is missing because it's failing on Arm 32 bit
and every other test has this requirement.

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 e866787c4d9d53..ac96bcc1364a27 100644
--- a/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py
+++ b/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py
@@ -90,6 +90,7 @@ def test_runInTerminal(self):
         env = self.dap_server.request_evaluate("foo")["body"]["result"]
         self.assertIn("bar", env)
 
+    @skipIf(archs=no_match(["x86_64"]))
     def test_runInTerminalWithObjectEnv(self):
         if not self.isTestSupported():
             return


        


More information about the lldb-commits mailing list