@@ -44,6 +44,7 @@ def isTestSupported(self):
44
44
return False
45
45
46
46
@skipIfWindows
47
+ @skipIf (archs = no_match (["x86_64" ]))
47
48
def test_runInTerminal (self ):
48
49
if not self .isTestSupported ():
49
50
return
@@ -89,6 +90,7 @@ def test_runInTerminal(self):
89
90
env = self .dap_server .request_evaluate ("foo" )["body" ]["result" ]
90
91
self .assertIn ("bar" , env )
91
92
93
+ @skipIf (archs = no_match (["x86_64" ]))
92
94
def test_runInTerminalWithObjectEnv (self ):
93
95
if not self .isTestSupported ():
94
96
return
@@ -112,6 +114,7 @@ def test_runInTerminalWithObjectEnv(self):
112
114
self .assertEqual ("BAR" , request_envs ["FOO" ])
113
115
114
116
@skipIfWindows
117
+ @skipIf (archs = no_match (["x86_64" ]))
115
118
def test_runInTerminalInvalidTarget (self ):
116
119
if not self .isTestSupported ():
117
120
return
@@ -130,6 +133,7 @@ def test_runInTerminalInvalidTarget(self):
130
133
)
131
134
132
135
@skipIfWindows
136
+ @skipIf (archs = no_match (["x86_64" ]))
133
137
def test_missingArgInRunInTerminalLauncher (self ):
134
138
if not self .isTestSupported ():
135
139
return
@@ -144,6 +148,7 @@ def test_missingArgInRunInTerminalLauncher(self):
144
148
)
145
149
146
150
@skipIfWindows
151
+ @skipIf (archs = no_match (["x86_64" ]))
147
152
def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram (self ):
148
153
if not self .isTestSupported ():
149
154
return
@@ -170,6 +175,7 @@ def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram(self):
170
175
self .assertIn ("No such file or directory" , stderr )
171
176
172
177
@skipIfWindows
178
+ @skipIf (archs = no_match (["x86_64" ]))
173
179
def test_FakeAttachedRunInTerminalLauncherWithValidProgram (self ):
174
180
if not self .isTestSupported ():
175
181
return
@@ -196,6 +202,7 @@ def test_FakeAttachedRunInTerminalLauncherWithValidProgram(self):
196
202
self .assertIn ("foo" , stdout )
197
203
198
204
@skipIfWindows
205
+ @skipIf (archs = no_match (["x86_64" ]))
199
206
def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment (self ):
200
207
if not self .isTestSupported ():
201
208
return
@@ -216,6 +223,7 @@ def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment(self):
216
223
self .assertIn ("FOO=BAR" , stdout )
217
224
218
225
@skipIfWindows
226
+ @skipIf (archs = no_match (["x86_64" ]))
219
227
def test_NonAttachedRunInTerminalLauncher (self ):
220
228
if not self .isTestSupported ():
221
229
return
0 commit comments