@@ -44,6 +44,7 @@ def isTestSupported(self):
4444 return False
4545
4646 @skipIfWindows
47+ @skipIf (archs = no_match (["x86_64" ]))
4748 def test_runInTerminal (self ):
4849 if not self .isTestSupported ():
4950 return
@@ -89,6 +90,7 @@ def test_runInTerminal(self):
8990 env = self .dap_server .request_evaluate ("foo" )["body" ]["result" ]
9091 self .assertIn ("bar" , env )
9192
93+ @skipIf (archs = no_match (["x86_64" ]))
9294 def test_runInTerminalWithObjectEnv (self ):
9395 if not self .isTestSupported ():
9496 return
@@ -112,6 +114,7 @@ def test_runInTerminalWithObjectEnv(self):
112114 self .assertEqual ("BAR" , request_envs ["FOO" ])
113115
114116 @skipIfWindows
117+ @skipIf (archs = no_match (["x86_64" ]))
115118 def test_runInTerminalInvalidTarget (self ):
116119 if not self .isTestSupported ():
117120 return
@@ -130,6 +133,7 @@ def test_runInTerminalInvalidTarget(self):
130133 )
131134
132135 @skipIfWindows
136+ @skipIf (archs = no_match (["x86_64" ]))
133137 def test_missingArgInRunInTerminalLauncher (self ):
134138 if not self .isTestSupported ():
135139 return
@@ -144,6 +148,7 @@ def test_missingArgInRunInTerminalLauncher(self):
144148 )
145149
146150 @skipIfWindows
151+ @skipIf (archs = no_match (["x86_64" ]))
147152 def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram (self ):
148153 if not self .isTestSupported ():
149154 return
@@ -170,6 +175,7 @@ def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram(self):
170175 self .assertIn ("No such file or directory" , stderr )
171176
172177 @skipIfWindows
178+ @skipIf (archs = no_match (["x86_64" ]))
173179 def test_FakeAttachedRunInTerminalLauncherWithValidProgram (self ):
174180 if not self .isTestSupported ():
175181 return
@@ -196,6 +202,7 @@ def test_FakeAttachedRunInTerminalLauncherWithValidProgram(self):
196202 self .assertIn ("foo" , stdout )
197203
198204 @skipIfWindows
205+ @skipIf (archs = no_match (["x86_64" ]))
199206 def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment (self ):
200207 if not self .isTestSupported ():
201208 return
@@ -216,6 +223,7 @@ def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment(self):
216223 self .assertIn ("FOO=BAR" , stdout )
217224
218225 @skipIfWindows
226+ @skipIf (archs = no_match (["x86_64" ]))
219227 def test_NonAttachedRunInTerminalLauncher (self ):
220228 if not self .isTestSupported ():
221229 return
0 commit comments