[llvm-branch-commits] [lldb] 358ad57 - Revert "[lldb][test] Enable TestDAP_runInTerminal on non-x86 architectures (#…"
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Oct 9 01:54:56 PDT 2024
Author: David Spickett
Date: 2024-10-09T09:54:53+01:00
New Revision: 358ad5760066ef415012732c03fb28ec823f3205
URL: https://github.com/llvm/llvm-project/commit/358ad5760066ef415012732c03fb28ec823f3205
DIFF: https://github.com/llvm/llvm-project/commit/358ad5760066ef415012732c03fb28ec823f3205.diff
LOG: Revert "[lldb][test] Enable TestDAP_runInTerminal on non-x86 architectures (#…"
This reverts commit de4f2c976f9fa11173c71b2b070225c9be89ceef.
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 38a3c4d68eb280..ac96bcc1364a27 100644
--- a/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py
+++ b/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py
@@ -44,6 +44,7 @@ def isTestSupported(self):
return False
@skipIfWindows
+ @skipIf(archs=no_match(["x86_64"]))
def test_runInTerminal(self):
if not self.isTestSupported():
return
@@ -89,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
@@ -112,6 +114,7 @@ def test_runInTerminalWithObjectEnv(self):
self.assertEqual("BAR", request_envs["FOO"])
@skipIfWindows
+ @skipIf(archs=no_match(["x86_64"]))
def test_runInTerminalInvalidTarget(self):
if not self.isTestSupported():
return
@@ -130,6 +133,7 @@ def test_runInTerminalInvalidTarget(self):
)
@skipIfWindows
+ @skipIf(archs=no_match(["x86_64"]))
def test_missingArgInRunInTerminalLauncher(self):
if not self.isTestSupported():
return
@@ -144,6 +148,7 @@ def test_missingArgInRunInTerminalLauncher(self):
)
@skipIfWindows
+ @skipIf(archs=no_match(["x86_64"]))
def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram(self):
if not self.isTestSupported():
return
@@ -170,6 +175,7 @@ def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram(self):
self.assertIn("No such file or directory", stderr)
@skipIfWindows
+ @skipIf(archs=no_match(["x86_64"]))
def test_FakeAttachedRunInTerminalLauncherWithValidProgram(self):
if not self.isTestSupported():
return
@@ -196,6 +202,7 @@ def test_FakeAttachedRunInTerminalLauncherWithValidProgram(self):
self.assertIn("foo", stdout)
@skipIfWindows
+ @skipIf(archs=no_match(["x86_64"]))
def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment(self):
if not self.isTestSupported():
return
@@ -216,6 +223,7 @@ def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment(self):
self.assertIn("FOO=BAR", stdout)
@skipIfWindows
+ @skipIf(archs=no_match(["x86_64"]))
def test_NonAttachedRunInTerminalLauncher(self):
if not self.isTestSupported():
return
More information about the llvm-branch-commits
mailing list