2014-02-07 19:08:32 +00:00
|
|
|
// Copyright 2012-2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-05-03 23:08:43 +00:00
|
|
|
// 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-03-11 20:38:36 +00:00
|
|
|
// ignore-pretty
|
2013-05-03 23:08:43 +00:00
|
|
|
// compile-flags:--test
|
|
|
|
|
|
|
|
// NB: These tests kill child processes. Valgrind sees these children as leaking
|
|
|
|
// memory, which makes for some *confusing* logs. That's why these are here
|
2013-05-21 00:07:24 +00:00
|
|
|
// instead of in std.
|
2013-05-03 23:08:43 +00:00
|
|
|
|
2014-04-14 15:30:31 +00:00
|
|
|
#![feature(macro_rules)]
|
2014-08-08 14:01:05 +00:00
|
|
|
#![reexport_test_harness_main = "test_main"]
|
|
|
|
|
2014-02-26 17:58:41 +00:00
|
|
|
extern crate libc;
|
2013-05-03 23:08:43 +00:00
|
|
|
|
2014-10-01 04:09:29 +00:00
|
|
|
use std::io::{Process, Command, timer};
|
2014-08-02 01:05:26 +00:00
|
|
|
use std::time::Duration;
|
2014-10-01 04:09:29 +00:00
|
|
|
use std::str;
|
|
|
|
|
2014-03-25 15:44:40 +00:00
|
|
|
macro_rules! succeed( ($e:expr) => (
|
2014-10-09 19:17:22 +00:00
|
|
|
match $e { Ok(..) => {}, Err(e) => panic!("panic: {}", e) }
|
2014-03-25 15:44:40 +00:00
|
|
|
) )
|
|
|
|
|
2014-10-01 04:09:29 +00:00
|
|
|
fn test_destroy_once() {
|
2014-03-25 15:44:40 +00:00
|
|
|
let mut p = sleeper();
|
|
|
|
match p.signal_exit() {
|
|
|
|
Ok(()) => {}
|
2014-10-09 19:17:22 +00:00
|
|
|
Err(e) => panic!("error: {}", e),
|
2014-03-25 15:44:40 +00:00
|
|
|
}
|
2014-10-01 04:09:29 +00:00
|
|
|
}
|
2013-05-03 23:08:43 +00:00
|
|
|
|
2014-03-25 15:44:40 +00:00
|
|
|
#[cfg(unix)]
|
|
|
|
pub fn sleeper() -> Process {
|
2014-05-05 21:33:55 +00:00
|
|
|
Command::new("sleep").arg("1000").spawn().unwrap()
|
2014-03-25 15:44:40 +00:00
|
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
|
|
pub fn sleeper() -> Process {
|
|
|
|
// There's a `timeout` command on windows, but it doesn't like having
|
|
|
|
// its output piped, so instead just ping ourselves a few times with
|
2014-08-01 23:42:13 +00:00
|
|
|
// gaps in between so we're sure this process is alive for awhile
|
2014-05-05 21:33:55 +00:00
|
|
|
Command::new("ping").arg("127.0.0.1").arg("-n").arg("1000").spawn().unwrap()
|
2014-03-25 15:44:40 +00:00
|
|
|
}
|
|
|
|
|
2014-10-01 04:09:29 +00:00
|
|
|
fn test_destroy_twice() {
|
2014-03-25 15:44:40 +00:00
|
|
|
let mut p = sleeper();
|
|
|
|
succeed!(p.signal_exit()); // this shouldnt crash...
|
|
|
|
let _ = p.signal_exit(); // ...and nor should this (and nor should the destructor)
|
2014-10-01 04:09:29 +00:00
|
|
|
}
|
2013-05-03 23:08:43 +00:00
|
|
|
|
2014-03-11 20:38:36 +00:00
|
|
|
pub fn test_destroy_actually_kills(force: bool) {
|
2014-05-05 21:33:55 +00:00
|
|
|
use std::io::process::{Command, ProcessOutput, ExitStatus, ExitSignal};
|
2014-03-11 20:38:36 +00:00
|
|
|
use std::io::timer;
|
2014-02-26 17:58:41 +00:00
|
|
|
use libc;
|
2014-03-11 20:38:36 +00:00
|
|
|
use std::str;
|
2013-05-03 23:08:43 +00:00
|
|
|
|
2014-10-12 01:05:54 +00:00
|
|
|
#[cfg(all(unix,not(target_os="android")))]
|
2014-03-11 20:38:36 +00:00
|
|
|
static BLOCK_COMMAND: &'static str = "cat";
|
2013-05-03 23:08:43 +00:00
|
|
|
|
2014-10-12 01:05:54 +00:00
|
|
|
#[cfg(all(unix,target_os="android"))]
|
2014-03-11 20:38:36 +00:00
|
|
|
static BLOCK_COMMAND: &'static str = "/system/bin/cat";
|
2013-11-07 10:22:18 +00:00
|
|
|
|
2013-05-03 23:08:43 +00:00
|
|
|
#[cfg(windows)]
|
2014-03-11 20:38:36 +00:00
|
|
|
static BLOCK_COMMAND: &'static str = "cmd";
|
2013-05-03 23:08:43 +00:00
|
|
|
|
2013-05-12 12:58:00 +00:00
|
|
|
// this process will stay alive indefinitely trying to read from stdin
|
2014-05-05 21:33:55 +00:00
|
|
|
let mut p = Command::new(BLOCK_COMMAND).spawn().unwrap();
|
2013-05-03 23:08:43 +00:00
|
|
|
|
2014-03-11 20:38:36 +00:00
|
|
|
assert!(p.signal(0).is_ok());
|
2013-05-03 23:08:43 +00:00
|
|
|
|
|
|
|
if force {
|
2014-02-18 20:04:51 +00:00
|
|
|
p.signal_kill().unwrap();
|
2013-05-03 23:08:43 +00:00
|
|
|
} else {
|
2014-02-18 20:04:51 +00:00
|
|
|
p.signal_exit().unwrap();
|
2013-05-03 23:08:43 +00:00
|
|
|
}
|
|
|
|
|
2014-03-11 20:38:36 +00:00
|
|
|
// Don't let this test time out, this should be quick
|
|
|
|
let (tx, rx1) = channel();
|
|
|
|
let mut t = timer::Timer::new().unwrap();
|
2014-08-02 01:05:26 +00:00
|
|
|
let rx2 = t.oneshot(Duration::milliseconds(1000));
|
2014-11-26 13:12:18 +00:00
|
|
|
spawn(move|| {
|
2014-03-11 20:38:36 +00:00
|
|
|
select! {
|
|
|
|
() = rx2.recv() => unsafe { libc::exit(1) },
|
|
|
|
() = rx1.recv() => {}
|
|
|
|
}
|
|
|
|
});
|
2014-05-05 23:58:42 +00:00
|
|
|
match p.wait().unwrap() {
|
2014-10-09 19:17:22 +00:00
|
|
|
ExitStatus(..) => panic!("expected a signal"),
|
2014-03-11 20:38:36 +00:00
|
|
|
ExitSignal(..) => tx.send(()),
|
2014-02-18 20:04:51 +00:00
|
|
|
}
|
2013-05-03 23:08:43 +00:00
|
|
|
}
|
|
|
|
|
2014-10-01 04:09:29 +00:00
|
|
|
fn test_unforced_destroy_actually_kills() {
|
2013-05-03 23:08:43 +00:00
|
|
|
test_destroy_actually_kills(false);
|
2014-10-01 04:09:29 +00:00
|
|
|
}
|
2013-05-03 23:08:43 +00:00
|
|
|
|
2014-10-01 04:09:29 +00:00
|
|
|
fn test_forced_destroy_actually_kills() {
|
2013-05-03 23:08:43 +00:00
|
|
|
test_destroy_actually_kills(true);
|
2014-10-01 04:09:29 +00:00
|
|
|
}
|