2014-02-05 17:19:40 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-06-25 21:41:16 -05:00
|
|
|
// no-pretty-expanded FIXME #15189
|
2014-08-11 18:24:19 -05:00
|
|
|
// ignore-windows FIXME #13259
|
2014-12-05 09:16:53 -06:00
|
|
|
|
|
|
|
#![feature(unboxed_closures)]
|
2015-01-13 02:27:28 -06:00
|
|
|
#![feature(unsafe_destructor)]
|
2014-12-05 09:16:53 -06:00
|
|
|
|
2014-02-05 17:19:40 -06:00
|
|
|
use std::os;
|
2015-01-22 18:31:00 -06:00
|
|
|
use std::old_io::process::Command;
|
2014-02-05 17:19:40 -06:00
|
|
|
use std::str;
|
2015-01-13 02:27:28 -06:00
|
|
|
use std::ops::{Drop, FnMut, FnOnce};
|
|
|
|
|
2014-02-05 17:19:40 -06:00
|
|
|
#[inline(never)]
|
|
|
|
fn foo() {
|
2015-01-25 15:05:03 -06:00
|
|
|
let _v = vec![1, 2, 3];
|
2014-07-31 10:13:25 -05:00
|
|
|
if os::getenv("IS_TEST").is_some() {
|
2014-10-09 14:17:22 -05:00
|
|
|
panic!()
|
2014-07-31 10:13:25 -05:00
|
|
|
}
|
2014-02-05 17:19:40 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(never)]
|
|
|
|
fn double() {
|
2015-01-13 17:44:33 -06:00
|
|
|
struct Double;
|
|
|
|
|
|
|
|
impl Drop for Double {
|
|
|
|
fn drop(&mut self) { panic!("twice") }
|
|
|
|
}
|
|
|
|
|
|
|
|
let _d = Double;
|
|
|
|
|
|
|
|
panic!("once");
|
2014-02-05 17:19:40 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn runtest(me: &str) {
|
2014-07-31 10:13:25 -05:00
|
|
|
let mut template = Command::new(me);
|
|
|
|
template.env("IS_TEST", "1");
|
|
|
|
|
2014-02-05 17:19:40 -06:00
|
|
|
// Make sure that the stack trace is printed
|
2014-07-31 10:13:25 -05:00
|
|
|
let p = template.clone().arg("fail").env("RUST_BACKTRACE", "1").spawn().unwrap();
|
2014-05-05 18:58:42 -05:00
|
|
|
let out = p.wait_with_output().unwrap();
|
2014-02-05 17:19:40 -06:00
|
|
|
assert!(!out.status.success());
|
2014-03-26 11:24:16 -05:00
|
|
|
let s = str::from_utf8(out.error.as_slice()).unwrap();
|
2014-02-05 17:19:40 -06:00
|
|
|
assert!(s.contains("stack backtrace") && s.contains("foo::h"),
|
|
|
|
"bad output: {}", s);
|
|
|
|
|
|
|
|
// Make sure the stack trace is *not* printed
|
2014-07-31 10:13:25 -05:00
|
|
|
let p = template.clone().arg("fail").spawn().unwrap();
|
2014-05-05 18:58:42 -05:00
|
|
|
let out = p.wait_with_output().unwrap();
|
2014-02-05 17:19:40 -06:00
|
|
|
assert!(!out.status.success());
|
2014-03-26 11:24:16 -05:00
|
|
|
let s = str::from_utf8(out.error.as_slice()).unwrap();
|
2014-02-05 17:19:40 -06:00
|
|
|
assert!(!s.contains("stack backtrace") && !s.contains("foo::h"),
|
|
|
|
"bad output2: {}", s);
|
|
|
|
|
|
|
|
// Make sure a stack trace is printed
|
2014-07-31 10:13:25 -05:00
|
|
|
let p = template.clone().arg("double-fail").spawn().unwrap();
|
2014-05-05 18:58:42 -05:00
|
|
|
let out = p.wait_with_output().unwrap();
|
2014-02-05 17:19:40 -06:00
|
|
|
assert!(!out.status.success());
|
2014-03-26 11:24:16 -05:00
|
|
|
let s = str::from_utf8(out.error.as_slice()).unwrap();
|
2014-11-18 23:15:13 -06:00
|
|
|
// loosened the following from double::h to double:: due to
|
|
|
|
// spurious failures on mac, 32bit, optimized
|
|
|
|
assert!(s.contains("stack backtrace") && s.contains("double::"),
|
2014-02-05 17:19:40 -06:00
|
|
|
"bad output3: {}", s);
|
|
|
|
|
|
|
|
// Make sure a stack trace isn't printed too many times
|
2014-07-31 10:13:25 -05:00
|
|
|
let p = template.clone().arg("double-fail")
|
2014-07-02 15:50:45 -05:00
|
|
|
.env("RUST_BACKTRACE", "1").spawn().unwrap();
|
2014-05-05 18:58:42 -05:00
|
|
|
let out = p.wait_with_output().unwrap();
|
2014-02-05 17:19:40 -06:00
|
|
|
assert!(!out.status.success());
|
2014-03-26 11:24:16 -05:00
|
|
|
let s = str::from_utf8(out.error.as_slice()).unwrap();
|
2014-02-05 17:19:40 -06:00
|
|
|
let mut i = 0;
|
2015-01-25 15:05:03 -06:00
|
|
|
for _ in 0..2 {
|
2015-01-26 20:21:15 -06:00
|
|
|
i += s[i + 10..].find_str("stack backtrace").unwrap() + 10;
|
2014-02-05 17:19:40 -06:00
|
|
|
}
|
2015-01-26 20:21:15 -06:00
|
|
|
assert!(s[i + 10..].find_str("stack backtrace").is_none(),
|
2014-02-05 17:19:40 -06:00
|
|
|
"bad output4: {}", s);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let args = os::args();
|
2014-05-04 15:20:47 -05:00
|
|
|
let args = args.as_slice();
|
2014-02-05 17:19:40 -06:00
|
|
|
if args.len() >= 2 && args[1].as_slice() == "fail" {
|
|
|
|
foo();
|
|
|
|
} else if args.len() >= 2 && args[1].as_slice() == "double-fail" {
|
|
|
|
double();
|
|
|
|
} else {
|
2014-05-16 12:45:16 -05:00
|
|
|
runtest(args[0].as_slice());
|
2014-02-05 17:19:40 -06:00
|
|
|
}
|
|
|
|
}
|