@@ -151,6 +151,7 @@ mod tests {
151
151
152
152
#[ test]
153
153
#[ cfg( unix, not( android) ) ]
154
+ #[ ignore] // FIXME(#9341)
154
155
fn smoke ( ) {
155
156
let io = ~[ ] ;
156
157
let args = ProcessConfig {
@@ -168,6 +169,7 @@ mod tests {
168
169
169
170
#[ test]
170
171
#[ cfg( unix, not( android) ) ]
172
+ #[ ignore] // FIXME(#9341)
171
173
fn smoke_failure ( ) {
172
174
let io = ~[ ] ;
173
175
let args = ProcessConfig {
@@ -185,6 +187,7 @@ mod tests {
185
187
186
188
#[ test]
187
189
#[ cfg( unix, not( android) ) ]
190
+ #[ ignore] // FIXME(#9341)
188
191
fn exit_reported_right ( ) {
189
192
let io = ~[ ] ;
190
193
let args = ProcessConfig {
@@ -225,6 +228,7 @@ mod tests {
225
228
226
229
#[ test]
227
230
#[ cfg( unix, not( android) ) ]
231
+ #[ ignore] // FIXME(#9341)
228
232
fn stdout_works ( ) {
229
233
let pipe = PipeStream :: new ( ) . unwrap ( ) ;
230
234
let io = ~[ Ignored , CreatePipe ( pipe, false , true ) ] ;
@@ -240,6 +244,7 @@ mod tests {
240
244
241
245
#[ test]
242
246
#[ cfg( unix, not( android) ) ]
247
+ #[ ignore] // FIXME(#9341)
243
248
fn set_cwd_works ( ) {
244
249
let pipe = PipeStream :: new ( ) . unwrap ( ) ;
245
250
let io = ~[ Ignored , CreatePipe ( pipe, false , true ) ] ;
@@ -256,6 +261,7 @@ mod tests {
256
261
257
262
#[ test]
258
263
#[ cfg( unix, not( android) ) ]
264
+ #[ ignore] // FIXME(#9341)
259
265
fn stdin_works ( ) {
260
266
let input = PipeStream :: new ( ) . unwrap ( ) ;
261
267
let output = PipeStream :: new ( ) . unwrap ( ) ;
0 commit comments