]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/panic-runtime/abort.rs
Rollup merge of #53110 - Xanewok:save-analysis-remap-path, r=nrc
[rust.git] / src / test / run-pass / panic-runtime / abort.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // compile-flags:-C panic=abort
12 // no-prefer-dynamic
13 // ignore-cloudabi no processes
14 // ignore-emscripten no processes
15 // ignore-macos
16
17 use std::process::Command;
18 use std::env;
19
20 struct Bomb;
21
22 impl Drop for Bomb {
23     fn drop(&mut self) {
24         std::process::exit(0);
25     }
26 }
27
28 fn main() {
29     let mut args = env::args_os();
30     let me = args.next().unwrap();
31
32     if let Some(s) = args.next() {
33         if &*s == "foo" {
34
35             let _bomb = Bomb;
36
37             panic!("try to catch me");
38         }
39     }
40
41     let mut cmd = Command::new(env::args_os().next().unwrap());
42     cmd.arg("foo");
43
44     // ARMv6 hanges while printing the backtrace, see #41004
45     if cfg!(target_arch = "arm") && cfg!(target_env = "gnu") {
46         cmd.env("RUST_BACKTRACE", "0");
47     }
48
49     let s = cmd.status();
50     assert!(s.unwrap().code() != Some(0));
51 }