]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/panic-runtime/abort.rs
New upstream version 1.22.1+dfsg1
[rustc.git] / src / test / run-pass / panic-runtime / abort.rs
CommitLineData
a7813a04
XL
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
c30ab7b3 13// ignore-emscripten Function not implemented.
a7813a04
XL
14
15use std::process::Command;
16use std::env;
17
18struct Bomb;
19
20impl Drop for Bomb {
21 fn drop(&mut self) {
22 std::process::exit(0);
23 }
24}
25
26fn main() {
27 let mut args = env::args_os();
28 let me = args.next().unwrap();
29
30 if let Some(s) = args.next() {
31 if &*s == "foo" {
32
33 let _bomb = Bomb;
34
35 panic!("try to catch me");
36 }
37 }
7cac9316
XL
38
39 let mut cmd = Command::new(env::args_os().next().unwrap());
40 cmd.arg("foo");
41
42 // ARMv6 hanges while printing the backtrace, see #41004
43 if cfg!(target_arch = "arm") && cfg!(target_env = "gnu") {
44 cmd.env("RUST_BACKTRACE", "0");
45 }
46
47 let s = cmd.status();
a7813a04
XL
48 assert!(s.unwrap().code() != Some(0));
49}