2024-03-06 14:44:54 -06:00
|
|
|
//@ ignore-wasm32 no subprocess support
|
2019-04-24 11:26:33 -05:00
|
|
|
//@ ignore-sgx no processes
|
2015-12-12 22:53:17 -06:00
|
|
|
//@ ignore-macos this needs valgrind 3.11 or higher; see
|
|
|
|
// https://github.com/rust-lang/rust/pull/30365#issuecomment-165763679
|
|
|
|
|
2015-08-28 12:50:16 -05:00
|
|
|
use std::env;
|
|
|
|
use std::process::{exit, Command};
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
if env::args().len() > 1 {
|
|
|
|
print!("hello!");
|
|
|
|
exit(0);
|
|
|
|
} else {
|
|
|
|
let out = Command::new(env::args().next().unwrap()).arg("foo")
|
|
|
|
.output().unwrap();
|
|
|
|
assert!(out.status.success());
|
|
|
|
assert_eq!(String::from_utf8(out.stdout).unwrap(), "hello!");
|
|
|
|
assert_eq!(String::from_utf8(out.stderr).unwrap(), "");
|
|
|
|
}
|
|
|
|
}
|