2014-10-23 00:29:41 -05:00
|
|
|
// Copyright 2012-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.
|
|
|
|
|
2018-09-14 05:20:28 -05:00
|
|
|
#![allow(unused_imports)]
|
2018-01-02 07:11:41 -06:00
|
|
|
// ignore-cloudabi can't run commands
|
2016-08-08 18:39:37 -05:00
|
|
|
// ignore-emscripten can't run commands
|
|
|
|
|
2015-07-27 15:41:35 -05:00
|
|
|
#![feature(libc)]
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2015-07-27 15:41:35 -05:00
|
|
|
extern crate libc;
|
|
|
|
|
|
|
|
use std::process::{Command, ExitStatus};
|
2015-02-16 08:04:02 -06:00
|
|
|
use std::env;
|
2014-10-23 00:29:41 -05:00
|
|
|
|
2016-11-23 18:09:51 -06:00
|
|
|
#[link(name = "rust_test_helpers", kind = "static")]
|
2016-01-31 17:30:32 -06:00
|
|
|
extern {
|
|
|
|
fn rust_get_null_ptr() -> *mut ::libc::c_char;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(unix)]
|
|
|
|
fn check_status(status: std::process::ExitStatus)
|
|
|
|
{
|
|
|
|
use libc;
|
|
|
|
use std::os::unix::process::ExitStatusExt;
|
|
|
|
|
|
|
|
assert!(status.signal() == Some(libc::SIGSEGV)
|
|
|
|
|| status.signal() == Some(libc::SIGBUS));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(unix))]
|
|
|
|
fn check_status(status: std::process::ExitStatus)
|
|
|
|
{
|
|
|
|
assert!(!status.success());
|
|
|
|
}
|
|
|
|
|
2014-10-23 00:29:41 -05:00
|
|
|
fn main() {
|
2015-02-16 08:04:02 -06:00
|
|
|
let args: Vec<String> = env::args().collect();
|
2015-02-01 20:53:25 -06:00
|
|
|
if args.len() > 1 && args[1] == "segfault" {
|
2016-01-31 17:30:32 -06:00
|
|
|
unsafe { *rust_get_null_ptr() = 1; }; // trigger a segfault
|
2014-10-23 00:29:41 -05:00
|
|
|
} else {
|
2015-02-01 20:53:25 -06:00
|
|
|
let segfault = Command::new(&args[0]).arg("segfault").output().unwrap();
|
2015-07-27 15:41:35 -05:00
|
|
|
let stderr = String::from_utf8_lossy(&segfault.stderr);
|
|
|
|
let stdout = String::from_utf8_lossy(&segfault.stdout);
|
|
|
|
println!("stdout: {}", stdout);
|
|
|
|
println!("stderr: {}", stderr);
|
|
|
|
println!("status: {}", segfault.status);
|
2016-01-31 17:30:32 -06:00
|
|
|
check_status(segfault.status);
|
2015-07-27 15:41:35 -05:00
|
|
|
assert!(!stderr.contains("has overflowed its stack"));
|
2014-10-23 00:29:41 -05:00
|
|
|
}
|
|
|
|
}
|