mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
24 lines
441 B
Rust
24 lines
441 B
Rust
// run-pass
|
|
// ignore-emscripten no processes
|
|
// ignore-sgx no processes
|
|
|
|
use std::process::Command;
|
|
use std::env;
|
|
|
|
fn main() {
|
|
let len = env::args().len();
|
|
|
|
if len == 1 {
|
|
test();
|
|
} else {
|
|
assert_eq!(len, 3);
|
|
}
|
|
}
|
|
|
|
fn test() {
|
|
let status = Command::new(&env::current_exe().unwrap())
|
|
.arg("foo").arg("")
|
|
.status().unwrap();
|
|
assert!(status.success());
|
|
}
|