@@ -45,6 +45,7 @@ def isTestSupported(self):
45
45
46
46
@skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
47
47
@skipIfWindows
48
+ @skipIf (archs = no_match (["x86_64" ]))
48
49
def test_runInTerminal (self ):
49
50
if not self .isTestSupported ():
50
51
return
@@ -90,6 +91,7 @@ def test_runInTerminal(self):
90
91
env = self .dap_server .request_evaluate ("foo" )["body" ]["result" ]
91
92
self .assertIn ("bar" , env )
92
93
94
+ @skipIf (archs = no_match (["x86_64" ]))
93
95
def test_runInTerminalWithObjectEnv (self ):
94
96
if not self .isTestSupported ():
95
97
return
@@ -114,6 +116,7 @@ def test_runInTerminalWithObjectEnv(self):
114
116
115
117
@skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
116
118
@skipIfWindows
119
+ @skipIf (archs = no_match (["x86_64" ]))
117
120
def test_runInTerminalInvalidTarget (self ):
118
121
if not self .isTestSupported ():
119
122
return
@@ -133,6 +136,7 @@ def test_runInTerminalInvalidTarget(self):
133
136
134
137
@skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
135
138
@skipIfWindows
139
+ @skipIf (archs = no_match (["x86_64" ]))
136
140
def test_missingArgInRunInTerminalLauncher (self ):
137
141
if not self .isTestSupported ():
138
142
return
@@ -148,6 +152,7 @@ def test_missingArgInRunInTerminalLauncher(self):
148
152
149
153
@skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
150
154
@skipIfWindows
155
+ @skipIf (archs = no_match (["x86_64" ]))
151
156
def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram (self ):
152
157
if not self .isTestSupported ():
153
158
return
@@ -175,6 +180,7 @@ def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram(self):
175
180
176
181
@skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
177
182
@skipIfWindows
183
+ @skipIf (archs = no_match (["x86_64" ]))
178
184
def test_FakeAttachedRunInTerminalLauncherWithValidProgram (self ):
179
185
if not self .isTestSupported ():
180
186
return
@@ -202,6 +208,7 @@ def test_FakeAttachedRunInTerminalLauncherWithValidProgram(self):
202
208
203
209
@skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
204
210
@skipIfWindows
211
+ @skipIf (archs = no_match (["x86_64" ]))
205
212
def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment (self ):
206
213
if not self .isTestSupported ():
207
214
return
@@ -223,6 +230,7 @@ def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment(self):
223
230
224
231
@skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
225
232
@skipIfWindows
233
+ @skipIf (archs = no_match (["x86_64" ]))
226
234
def test_NonAttachedRunInTerminalLauncher (self ):
227
235
if not self .isTestSupported ():
228
236
return
0 commit comments