diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-09-19 15:17:29 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-09-19 15:17:29 -0700 |
| commit | 5165ecde66913874225ebd9d013b2cd4140fe69d (patch) | |
| tree | 4f36fcf02ef384d7fcb47927366f889541c97569 /src/libstd/rt | |
| parent | 755f6229da1d436f4cb23fffea644ba13291b434 (diff) | |
| download | rust-5165ecde66913874225ebd9d013b2cd4140fe69d.tar.gz rust-5165ecde66913874225ebd9d013b2cd4140fe69d.zip | |
Ignore io::process tests
They're causing syscalls to get interrupted, and std::io doesn't correctly handle EINTR
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/io/process.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libstd/rt/io/process.rs b/src/libstd/rt/io/process.rs index e92b0d3b7b5..91efd93026c 100644 --- a/src/libstd/rt/io/process.rs +++ b/src/libstd/rt/io/process.rs @@ -151,6 +151,7 @@ mod tests { #[test] #[cfg(unix, not(android))] + #[ignore] // FIXME(#9341) fn smoke() { let io = ~[]; let args = ProcessConfig { @@ -168,6 +169,7 @@ mod tests { #[test] #[cfg(unix, not(android))] + #[ignore] // FIXME(#9341) fn smoke_failure() { let io = ~[]; let args = ProcessConfig { @@ -185,6 +187,7 @@ mod tests { #[test] #[cfg(unix, not(android))] + #[ignore] // FIXME(#9341) fn exit_reported_right() { let io = ~[]; let args = ProcessConfig { @@ -225,6 +228,7 @@ mod tests { #[test] #[cfg(unix, not(android))] + #[ignore] // FIXME(#9341) fn stdout_works() { let pipe = PipeStream::new().unwrap(); let io = ~[Ignored, CreatePipe(pipe, false, true)]; @@ -240,6 +244,7 @@ mod tests { #[test] #[cfg(unix, not(android))] + #[ignore] // FIXME(#9341) fn set_cwd_works() { let pipe = PipeStream::new().unwrap(); let io = ~[Ignored, CreatePipe(pipe, false, true)]; @@ -256,6 +261,7 @@ mod tests { #[test] #[cfg(unix, not(android))] + #[ignore] // FIXME(#9341) fn stdin_works() { let input = PipeStream::new().unwrap(); let output = PipeStream::new().unwrap(); |
