rust/tests/ui/process/process-exit.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
547 B
Rust
Raw Normal View History

// run-pass
#![allow(unused_imports)]
// ignore-emscripten no processes
2019-04-24 16:26:33 +00:00
// ignore-sgx no processes
use std::env;
use std::process::{self, Command, Stdio};
fn main() {
let args: Vec<String> = env::args().collect();
if args.len() > 1 && args[1] == "child" {
child();
} else {
parent();
}
}
fn parent() {
let args: Vec<String> = env::args().collect();
let status = Command::new(&args[0]).arg("child").status().unwrap();
assert_eq!(status.code(), Some(2));
}
fn child() -> i32 {
process::exit(2);
}