Skip to content

Commit 570431f

Browse files
committed
auto merge of #9342 : alexcrichton/rust/ignore-libuv-signal-tests, r=brson
They're causing syscalls to get interrupted, and std::io doesn't correctly handle EINTR
2 parents 85c0fb7 + 5165ecd commit 570431f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/libstd/rt/io/process.rs

+6
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ mod tests {
151151

152152
#[test]
153153
#[cfg(unix, not(android))]
154+
#[ignore] // FIXME(#9341)
154155
fn smoke() {
155156
let io = ~[];
156157
let args = ProcessConfig {
@@ -168,6 +169,7 @@ mod tests {
168169

169170
#[test]
170171
#[cfg(unix, not(android))]
172+
#[ignore] // FIXME(#9341)
171173
fn smoke_failure() {
172174
let io = ~[];
173175
let args = ProcessConfig {
@@ -185,6 +187,7 @@ mod tests {
185187

186188
#[test]
187189
#[cfg(unix, not(android))]
190+
#[ignore] // FIXME(#9341)
188191
fn exit_reported_right() {
189192
let io = ~[];
190193
let args = ProcessConfig {
@@ -225,6 +228,7 @@ mod tests {
225228

226229
#[test]
227230
#[cfg(unix, not(android))]
231+
#[ignore] // FIXME(#9341)
228232
fn stdout_works() {
229233
let pipe = PipeStream::new().unwrap();
230234
let io = ~[Ignored, CreatePipe(pipe, false, true)];
@@ -240,6 +244,7 @@ mod tests {
240244

241245
#[test]
242246
#[cfg(unix, not(android))]
247+
#[ignore] // FIXME(#9341)
243248
fn set_cwd_works() {
244249
let pipe = PipeStream::new().unwrap();
245250
let io = ~[Ignored, CreatePipe(pipe, false, true)];
@@ -256,6 +261,7 @@ mod tests {
256261

257262
#[test]
258263
#[cfg(unix, not(android))]
264+
#[ignore] // FIXME(#9341)
259265
fn stdin_works() {
260266
let input = PipeStream::new().unwrap();
261267
let output = PipeStream::new().unwrap();

0 commit comments

Comments
 (0)