[Lldb-commits] [lldb] 9239749 - [lldb-dap] enable run-in-terminal test on linux arm. (#171598)

via lldb-commits lldb-commits at lists.llvm.org
Wed Dec 10 08:17:58 PST 2025


Author: Ebuka Ezike
Date: 2025-12-10T16:17:53Z
New Revision: 923974987abef24c5948eb3ade25e0a1c6626035

URL: https://github.com/llvm/llvm-project/commit/923974987abef24c5948eb3ade25e0a1c6626035
DIFF: https://github.com/llvm/llvm-project/commit/923974987abef24c5948eb3ade25e0a1c6626035.diff

LOG: [lldb-dap] enable run-in-terminal test on linux arm. (#171598)

follow up to
https://github.com/llvm/llvm-project/pull/144954#issuecomment-2990767363

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 4a360a0bcad01..a9ddc1ac55ffe 100644
--- a/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py
+++ b/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py
@@ -28,7 +28,6 @@ def read_error_message(fifo_file):
 
     @skipIfAsan
     @skipIfWindows
-    @skipIf(oslist=["linux"], archs=no_match(["x86_64"]))
     def test_runInTerminal(self):
         """
             Tests the "runInTerminal" reverse request. It makes sure that the IDE can
@@ -76,7 +75,6 @@ def test_runInTerminal(self):
 
     @skipIfAsan
     @skipIfWindows
-    @skipIf(oslist=["linux"], archs=no_match(["x86_64"]))
     def test_runInTerminalWithObjectEnv(self):
         """
             Tests the "runInTerminal" reverse request. It makes sure that the IDE can
@@ -100,7 +98,6 @@ def test_runInTerminalWithObjectEnv(self):
         self.continue_to_exit()
 
     @skipIfWindows
-    @skipIf(oslist=["linux"], archs=no_match(["x86_64"]))
     def test_runInTerminalInvalidTarget(self):
         self.build_and_create_debug_adapter()
         response = self.launch(
@@ -117,7 +114,6 @@ def test_runInTerminalInvalidTarget(self):
         )
 
     @skipIfWindows
-    @skipIf(oslist=["linux"], archs=no_match(["x86_64"]))
     def test_missingArgInRunInTerminalLauncher(self):
         proc = subprocess.run(
             [self.lldbDAPExec, "--launch-target", "INVALIDPROGRAM"],
@@ -130,7 +126,6 @@ def test_missingArgInRunInTerminalLauncher(self):
         )
 
     @skipIfWindows
-    @skipIf(oslist=["linux"], archs=no_match(["x86_64"]))
     def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram(self):
         comm_file = os.path.join(self.getBuildDir(), "comm-file")
         os.mkfifo(comm_file)
@@ -155,7 +150,6 @@ def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram(self):
         self.assertIn("No such file or directory", stderr)
 
     @skipIfWindows
-    @skipIf(oslist=["linux"], archs=no_match(["x86_64"]))
     def test_FakeAttachedRunInTerminalLauncherWithValidProgram(self):
         comm_file = os.path.join(self.getBuildDir(), "comm-file")
         os.mkfifo(comm_file)
@@ -180,7 +174,6 @@ def test_FakeAttachedRunInTerminalLauncherWithValidProgram(self):
         self.assertIn("foo", stdout)
 
     @skipIfWindows
-    @skipIf(oslist=["linux"], archs=no_match(["x86_64"]))
     def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment(self):
         comm_file = os.path.join(self.getBuildDir(), "comm-file")
         os.mkfifo(comm_file)
@@ -199,7 +192,6 @@ def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment(self):
         self.assertIn("FOO=BAR", stdout)
 
     @skipIfWindows
-    @skipIf(oslist=["linux"], archs=no_match(["x86_64"]))
     def test_NonAttachedRunInTerminalLauncher(self):
         comm_file = os.path.join(self.getBuildDir(), "comm-file")
         os.mkfifo(comm_file)


        


More information about the lldb-commits mailing list