https://github.com/da-viper updated https://github.com/llvm/llvm-project/pull/171598
>From 77669eca36674766caa217b82dcc48c39c17d8af Mon Sep 17 00:00:00 2001 From: Ebuka Ezike <[email protected]> Date: Wed, 10 Dec 2025 10:28:19 +0000 Subject: [PATCH 1/2] [lldb-dap] enable run-in-terminal test on linux arm. follow up to https://github.com/llvm/llvm-project/pull/144954#issuecomment-2990767363 --- .../tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py | 7 ------- 1 file changed, 7 deletions(-) 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..7a30f00d83883 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) >From 4d2dbdbf4240a9847e2dea30d0a3fd33b0c3d4b4 Mon Sep 17 00:00:00 2001 From: Ebuka Ezike <[email protected]> Date: Wed, 10 Dec 2025 10:28:19 +0000 Subject: [PATCH 2/2] [lldb-dap] enable run-in-terminal test on linux arm. follow up to https://github.com/llvm/llvm-project/pull/144954#issuecomment-2990767363 --- .../API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py | 1 - 1 file changed, 1 deletion(-) 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 7a30f00d83883..a9ddc1ac55ffe 100644 --- a/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py +++ b/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py @@ -192,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) _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
