temporarily disable tests on android and tagging issue number #10380
This commit is contained in:
parent
d6f7669c78
commit
5daf6b7849
2 changed files with 13 additions and 99 deletions
|
|
@ -28,6 +28,7 @@ use std::rt::io::{Reader, Writer};
|
|||
use std::str;
|
||||
|
||||
#[test]
|
||||
// FIXME(#10380)
|
||||
#[cfg(unix, not(target_os="android"))]
|
||||
fn smoke() {
|
||||
let io = ~[];
|
||||
|
|
@ -45,6 +46,7 @@ fn smoke() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
// FIXME(#10380)
|
||||
#[cfg(unix, not(target_os="android"))]
|
||||
fn smoke_failure() {
|
||||
let io = ~[];
|
||||
|
|
@ -62,6 +64,7 @@ fn smoke_failure() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
// FIXME(#10380)
|
||||
#[cfg(unix, not(target_os="android"))]
|
||||
fn exit_reported_right() {
|
||||
let io = ~[];
|
||||
|
|
@ -102,6 +105,7 @@ fn run_output(args: ProcessConfig) -> ~str {
|
|||
}
|
||||
|
||||
#[test]
|
||||
// FIXME(#10380)
|
||||
#[cfg(unix, not(target_os="android"))]
|
||||
fn stdout_works() {
|
||||
let io = ~[Ignored, CreatePipe(false, true)];
|
||||
|
|
@ -116,6 +120,7 @@ fn stdout_works() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
// FIXME(#10380)
|
||||
#[cfg(unix, not(target_os="android"))]
|
||||
fn set_cwd_works() {
|
||||
let io = ~[Ignored, CreatePipe(false, true)];
|
||||
|
|
@ -131,6 +136,7 @@ fn set_cwd_works() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
// FIXME(#10380)
|
||||
#[cfg(unix, not(target_os="android"))]
|
||||
fn stdin_works() {
|
||||
let io = ~[CreatePipe(true, false),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue