@@ -45,6 +45,7 @@ def isTestSupported(self):
4545
4646 @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
4747 @skipIfWindows
48+ @skipIf (archs = no_match (["x86_64" ]))
4849 def test_runInTerminal (self ):
4950 if not self .isTestSupported ():
5051 return
@@ -90,6 +91,7 @@ def test_runInTerminal(self):
9091 env = self .dap_server .request_evaluate ("foo" )["body" ]["result" ]
9192 self .assertIn ("bar" , env )
9293
94+ @skipIf (archs = no_match (["x86_64" ]))
9395 def test_runInTerminalWithObjectEnv (self ):
9496 if not self .isTestSupported ():
9597 return
@@ -114,6 +116,7 @@ def test_runInTerminalWithObjectEnv(self):
114116
115117 @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
116118 @skipIfWindows
119+ @skipIf (archs = no_match (["x86_64" ]))
117120 def test_runInTerminalInvalidTarget (self ):
118121 if not self .isTestSupported ():
119122 return
@@ -133,6 +136,7 @@ def test_runInTerminalInvalidTarget(self):
133136
134137 @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
135138 @skipIfWindows
139+ @skipIf (archs = no_match (["x86_64" ]))
136140 def test_missingArgInRunInTerminalLauncher (self ):
137141 if not self .isTestSupported ():
138142 return
@@ -148,6 +152,7 @@ def test_missingArgInRunInTerminalLauncher(self):
148152
149153 @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
150154 @skipIfWindows
155+ @skipIf (archs = no_match (["x86_64" ]))
151156 def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram (self ):
152157 if not self .isTestSupported ():
153158 return
@@ -175,6 +180,7 @@ def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram(self):
175180
176181 @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
177182 @skipIfWindows
183+ @skipIf (archs = no_match (["x86_64" ]))
178184 def test_FakeAttachedRunInTerminalLauncherWithValidProgram (self ):
179185 if not self .isTestSupported ():
180186 return
@@ -202,6 +208,7 @@ def test_FakeAttachedRunInTerminalLauncherWithValidProgram(self):
202208
203209 @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
204210 @skipIfWindows
211+ @skipIf (archs = no_match (["x86_64" ]))
205212 def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment (self ):
206213 if not self .isTestSupported ():
207214 return
@@ -223,6 +230,7 @@ def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment(self):
223230
224231 @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
225232 @skipIfWindows
233+ @skipIf (archs = no_match (["x86_64" ]))
226234 def test_NonAttachedRunInTerminalLauncher (self ):
227235 if not self .isTestSupported ():
228236 return
0 commit comments