@@ -75,6 +75,7 @@ def test_runInTerminal(self):
75
75
76
76
@skipIfWindows
77
77
@skipIfRemote
78
+ @skipIf (archs = no_match (['x86_64' ]))
78
79
def test_runInTerminalInvalidTarget (self ):
79
80
self .build_and_create_debug_adaptor ()
80
81
response = self .launch (
@@ -85,6 +86,7 @@ def test_runInTerminalInvalidTarget(self):
85
86
86
87
@skipIfWindows
87
88
@skipIfRemote
89
+ @skipIf (archs = no_match (['x86_64' ]))
88
90
def test_missingArgInRunInTerminalLauncher (self ):
89
91
proc = subprocess .run ([self .lldbVSCodeExec , "--launch-target" , "INVALIDPROGRAM" ],
90
92
capture_output = True , universal_newlines = True )
@@ -93,6 +95,7 @@ def test_missingArgInRunInTerminalLauncher(self):
93
95
94
96
@skipIfWindows
95
97
@skipIfRemote
98
+ @skipIf (archs = no_match (['x86_64' ]))
96
99
def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram (self ):
97
100
comm_file = os .path .join (self .getBuildDir (), "comm-file" )
98
101
os .mkfifo (comm_file )
@@ -110,6 +113,7 @@ def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram(self):
110
113
111
114
@skipIfWindows
112
115
@skipIfRemote
116
+ @skipIf (archs = no_match (['x86_64' ]))
113
117
def test_FakeAttachedRunInTerminalLauncherWithValidProgram (self ):
114
118
comm_file = os .path .join (self .getBuildDir (), "comm-file" )
115
119
os .mkfifo (comm_file )
@@ -126,6 +130,7 @@ def test_FakeAttachedRunInTerminalLauncherWithValidProgram(self):
126
130
127
131
@skipIfWindows
128
132
@skipIfRemote
133
+ @skipIf (archs = no_match (['x86_64' ]))
129
134
def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment (self ):
130
135
comm_file = os .path .join (self .getBuildDir (), "comm-file" )
131
136
os .mkfifo (comm_file )
@@ -143,6 +148,7 @@ def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment(self):
143
148
144
149
@skipIfWindows
145
150
@skipIfRemote
151
+ @skipIf (archs = no_match (['x86_64' ]))
146
152
def test_NonAttachedRunInTerminalLauncher (self ):
147
153
comm_file = os .path .join (self .getBuildDir (), "comm-file" )
148
154
os .mkfifo (comm_file )
0 commit comments