cf6d6050f7
* The WASI targets deal with the `main` symbol a bit differently than native so some `codegen` and `assembly` tests have been ignored. * All `ignore-emscripten` directives have been updated to `ignore-wasm32` to be more clear that all wasm targets are ignored and it's not just Emscripten. * Most `ignore-wasm32-bare` directives are now gone. * Some ignore directives for wasm were switched to `needs-unwind` instead. * Many `ignore-wasm32*` directives are removed as the tests work with WASI as opposed to `wasm32-unknown-unknown`.
38 lines
986 B
Rust
38 lines
986 B
Rust
//@ run-pass
|
|
#![allow(unused_mut)]
|
|
//@ ignore-wasm32 no processes
|
|
//@ ignore-sgx no processes
|
|
|
|
use std::env;
|
|
use std::io::prelude::*;
|
|
use std::io;
|
|
use std::process::{Command, Stdio};
|
|
|
|
fn main() {
|
|
let args: Vec<String> = env::args().collect();
|
|
if args.len() > 1 && args[1] == "child" {
|
|
return child()
|
|
}
|
|
|
|
test();
|
|
}
|
|
|
|
fn child() {
|
|
writeln!(&mut io::stdout(), "foo").unwrap();
|
|
writeln!(&mut io::stderr(), "bar").unwrap();
|
|
let mut stdin = io::stdin();
|
|
let mut s = String::new();
|
|
stdin.lock().read_line(&mut s).unwrap();
|
|
assert_eq!(s.len(), 0);
|
|
}
|
|
|
|
fn test() {
|
|
let args: Vec<String> = env::args().collect();
|
|
let mut p = Command::new(&args[0]).arg("child")
|
|
.stdin(Stdio::piped())
|
|
.stdout(Stdio::piped())
|
|
.stderr(Stdio::piped())
|
|
.spawn().unwrap();
|
|
assert!(p.wait().unwrap().success());
|
|
}
|