@@ -28,7 +28,6 @@ def read_error_message(fifo_file):
2828
2929 @skipIfAsan
3030 @skipIfWindows
31- @skipIf (oslist = ["linux" ], archs = no_match (["x86_64" ]))
3231 def test_runInTerminal (self ):
3332 """
3433 Tests the "runInTerminal" reverse request. It makes sure that the IDE can
@@ -76,7 +75,6 @@ def test_runInTerminal(self):
7675
7776 @skipIfAsan
7877 @skipIfWindows
79- @skipIf (oslist = ["linux" ], archs = no_match (["x86_64" ]))
8078 def test_runInTerminalWithObjectEnv (self ):
8179 """
8280 Tests the "runInTerminal" reverse request. It makes sure that the IDE can
@@ -100,7 +98,6 @@ def test_runInTerminalWithObjectEnv(self):
10098 self .continue_to_exit ()
10199
102100 @skipIfWindows
103- @skipIf (oslist = ["linux" ], archs = no_match (["x86_64" ]))
104101 def test_runInTerminalInvalidTarget (self ):
105102 self .build_and_create_debug_adapter ()
106103 response = self .launch (
@@ -117,7 +114,6 @@ def test_runInTerminalInvalidTarget(self):
117114 )
118115
119116 @skipIfWindows
120- @skipIf (oslist = ["linux" ], archs = no_match (["x86_64" ]))
121117 def test_missingArgInRunInTerminalLauncher (self ):
122118 proc = subprocess .run (
123119 [self .lldbDAPExec , "--launch-target" , "INVALIDPROGRAM" ],
@@ -130,7 +126,6 @@ def test_missingArgInRunInTerminalLauncher(self):
130126 )
131127
132128 @skipIfWindows
133- @skipIf (oslist = ["linux" ], archs = no_match (["x86_64" ]))
134129 def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram (self ):
135130 comm_file = os .path .join (self .getBuildDir (), "comm-file" )
136131 os .mkfifo (comm_file )
@@ -155,7 +150,6 @@ def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram(self):
155150 self .assertIn ("No such file or directory" , stderr )
156151
157152 @skipIfWindows
158- @skipIf (oslist = ["linux" ], archs = no_match (["x86_64" ]))
159153 def test_FakeAttachedRunInTerminalLauncherWithValidProgram (self ):
160154 comm_file = os .path .join (self .getBuildDir (), "comm-file" )
161155 os .mkfifo (comm_file )
@@ -180,7 +174,6 @@ def test_FakeAttachedRunInTerminalLauncherWithValidProgram(self):
180174 self .assertIn ("foo" , stdout )
181175
182176 @skipIfWindows
183- @skipIf (oslist = ["linux" ], archs = no_match (["x86_64" ]))
184177 def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment (self ):
185178 comm_file = os .path .join (self .getBuildDir (), "comm-file" )
186179 os .mkfifo (comm_file )
@@ -199,7 +192,6 @@ def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment(self):
199192 self .assertIn ("FOO=BAR" , stdout )
200193
201194 @skipIfWindows
202- @skipIf (oslist = ["linux" ], archs = no_match (["x86_64" ]))
203195 def test_NonAttachedRunInTerminalLauncher (self ):
204196 comm_file = os .path .join (self .getBuildDir (), "comm-file" )
205197 os .mkfifo (comm_file )
0 commit comments