@@ -47,6 +47,7 @@ def isTestSupported(self):
47
47
except :
48
48
return False
49
49
50
+ @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
50
51
@skipIfWindows
51
52
@skipIfRemote
52
53
@skipIf (archs = no_match (['x86_64' ]))
@@ -83,6 +84,7 @@ def test_runInTerminal(self):
83
84
env = self .vscode .request_evaluate ('foo' )['body' ]['result' ]
84
85
self .assertIn ('bar' , env )
85
86
87
+ @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
86
88
@skipIfWindows
87
89
@skipIfRemote
88
90
@skipIf (archs = no_match (['x86_64' ]))
@@ -96,6 +98,7 @@ def test_runInTerminalInvalidTarget(self):
96
98
self .assertIn ("Could not create a target for a program 'INVALIDPROGRAM': unable to find executable" ,
97
99
response ['message' ])
98
100
101
+ @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
99
102
@skipIfWindows
100
103
@skipIfRemote
101
104
@skipIf (archs = no_match (['x86_64' ]))
@@ -107,6 +110,7 @@ def test_missingArgInRunInTerminalLauncher(self):
107
110
self .assertTrue (proc .returncode != 0 )
108
111
self .assertIn ('"--launch-target" requires "--comm-file" to be specified' , proc .stderr )
109
112
113
+ @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
110
114
@skipIfWindows
111
115
@skipIfRemote
112
116
@skipIf (archs = no_match (['x86_64' ]))
@@ -127,6 +131,7 @@ def test_FakeAttachedRunInTerminalLauncherWithInvalidProgram(self):
127
131
_ , stderr = proc .communicate ()
128
132
self .assertIn ("No such file or directory" , stderr )
129
133
134
+ @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
130
135
@skipIfWindows
131
136
@skipIfRemote
132
137
@skipIf (archs = no_match (['x86_64' ]))
@@ -146,6 +151,7 @@ def test_FakeAttachedRunInTerminalLauncherWithValidProgram(self):
146
151
stdout , _ = proc .communicate ()
147
152
self .assertIn ("foo" , stdout )
148
153
154
+ @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
149
155
@skipIfWindows
150
156
@skipIfRemote
151
157
@skipIf (archs = no_match (['x86_64' ]))
@@ -166,6 +172,7 @@ def test_FakeAttachedRunInTerminalLauncherAndCheckEnvironment(self):
166
172
stdout , _ = proc .communicate ()
167
173
self .assertIn ("FOO=BAR" , stdout )
168
174
175
+ @skipIfLinux # FIXME: doesn't seem to work on Ubuntu 16.04.
169
176
@skipIfWindows
170
177
@skipIfRemote
171
178
@skipIf (archs = no_match (['x86_64' ]))
0 commit comments