mirror of https://github.com/rust-lang/rust
34 lines
659 B
Rust
34 lines
659 B
Rust
//@ run-pass
|
|
#![allow(unused_variables)]
|
|
//@ compile-flags:-C lto -C panic=abort
|
|
//@ no-prefer-dynamic
|
|
//@ ignore-wasm32 no processes
|
|
//@ ignore-sgx no processes
|
|
|
|
use std::process::Command;
|
|
use std::env;
|
|
|
|
struct Bomb;
|
|
|
|
impl Drop for Bomb {
|
|
fn drop(&mut self) {
|
|
std::process::exit(0);
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let mut args = env::args_os();
|
|
let me = args.next().unwrap();
|
|
|
|
if let Some(s) = args.next() {
|
|
if &*s == "foo" {
|
|
|
|
let _bomb = Bomb;
|
|
|
|
panic!("try to catch me");
|
|
}
|
|
}
|
|
let s = Command::new(env::args_os().next().unwrap()).arg("foo").status();
|
|
assert!(s.unwrap().code() != Some(0));
|
|
}
|