Skip to content

Commit 50337fb

Browse files
Fix runInTerminal errors on ARM
Caused by https://reviews.llvm.org/D93951 This feature is not needed on ARM, so let's just disable the tests on ARM.
1 parent b43c26d commit 50337fb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lldb/test/API/tools/lldb-vscode/runInTerminal/TestVSCode_runInTerminal.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ def test_runInTerminal(self):
7575

7676
@skipIfWindows
7777
@skipIfRemote
78+
@skipIf(archs=no_match(['x86_64']))
7879
def test_runInTerminalInvalidTarget(self):
7980
self.build_and_create_debug_adaptor()
8081
response = self.launch(
@@ -85,6 +86,7 @@ def test_runInTerminalInvalidTarget(self):
8586

8687
@skipIfWindows
8788
@skipIfRemote
89+
@skipIf(archs=no_match(['x86_64']))
8890
def test_missingArgInRunInTerminalLauncher(self):
8991
proc = subprocess.run([self.lldbVSCodeExec, "--launch-target", "INVALIDPROGRAM"],
9092
capture_output=True, universal_newlines=True)
@@ -93,6 +95,7 @@ def test_missingArgInRunInTerminalLauncher(self):
9395

9496
@skipIfWindows
9597
@skipIfRemote
98+
@skipIf(archs=no_match(['x86_64']))
9699
def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram(self):
97100
comm_file = os.path.join(self.getBuildDir(), "comm-file")
98101
os.mkfifo(comm_file)
@@ -110,6 +113,7 @@ def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram(self):
110113

111114
@skipIfWindows
112115
@skipIfRemote
116+
@skipIf(archs=no_match(['x86_64']))
113117
def test_FakeAttachedRunInTerminalLauncherWithValidProgram(self):
114118
comm_file = os.path.join(self.getBuildDir(), "comm-file")
115119
os.mkfifo(comm_file)
@@ -126,6 +130,7 @@ def test_FakeAttachedRunInTerminalLauncherWithValidProgram(self):
126130

127131
@skipIfWindows
128132
@skipIfRemote
133+
@skipIf(archs=no_match(['x86_64']))
129134
def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment(self):
130135
comm_file = os.path.join(self.getBuildDir(), "comm-file")
131136
os.mkfifo(comm_file)
@@ -143,6 +148,7 @@ def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment(self):
143148

144149
@skipIfWindows
145150
@skipIfRemote
151+
@skipIf(archs=no_match(['x86_64']))
146152
def test_NonAttachedRunInTerminalLauncher(self):
147153
comm_file = os.path.join(self.getBuildDir(), "comm-file")
148154
os.mkfifo(comm_file)

0 commit comments

Comments
 (0)