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`.
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));
|
|
}
|