2014-02-07 13:08:32 -06:00
|
|
|
// Copyright 2012-2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-05-03 18:08:43 -05: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 15:38:36 -05:00
|
|
|
// ignore-pretty
|
2013-05-03 18:08:43 -05: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-20 19:07:24 -05:00
|
|
|
// instead of in std.
|
2013-05-03 18:08:43 -05:00
|
|
|
|
2014-08-08 09:01:05 -05:00
|
|
|
#![reexport_test_harness_main = "test_main"]
|
2015-04-28 13:40:04 -05:00
|
|
|
#![feature(libc, std_misc, duration)]
|
2014-08-08 09:01:05 -05:00
|
|
|
|
2014-02-26 11:58:41 -06:00
|
|
|
extern crate libc;
|
2013-05-03 18:08:43 -05:00
|
|
|
|
2015-04-10 15:51:53 -05:00
|
|
|
use std::process::{self, Command, Child, Output, Stdio};
|
2014-09-30 23:09:29 -05:00
|
|
|
use std::str;
|
2014-12-23 13:53:35 -06:00
|
|
|
use std::sync::mpsc::channel;
|
2015-03-30 13:00:05 -05:00
|
|
|
use std::thread;
|
2015-04-10 13:12:43 -05:00
|
|
|
use std::time::Duration;
|
2014-09-30 23:09:29 -05:00
|
|
|
|
2015-04-10 13:12:43 -05:00
|
|
|
macro_rules! t {
|
|
|
|
($e:expr) => (match $e { Ok(e) => e, Err(e) => panic!("error: {}", e) })
|
|
|
|
}
|
2014-03-25 10:44:40 -05:00
|
|
|
|
2014-09-30 23:09:29 -05:00
|
|
|
fn test_destroy_once() {
|
2014-03-25 10:44:40 -05:00
|
|
|
let mut p = sleeper();
|
2015-04-10 13:12:43 -05:00
|
|
|
match p.kill() {
|
2014-03-25 10:44:40 -05:00
|
|
|
Ok(()) => {}
|
2014-10-09 14:17:22 -05:00
|
|
|
Err(e) => panic!("error: {}", e),
|
2014-03-25 10:44:40 -05:00
|
|
|
}
|
2014-09-30 23:09:29 -05:00
|
|
|
}
|
2013-05-03 18:08:43 -05:00
|
|
|
|
2014-03-25 10:44:40 -05:00
|
|
|
#[cfg(unix)]
|
2015-04-10 13:12:43 -05:00
|
|
|
pub fn sleeper() -> Child {
|
2014-05-05 16:33:55 -05:00
|
|
|
Command::new("sleep").arg("1000").spawn().unwrap()
|
2014-03-25 10:44:40 -05:00
|
|
|
}
|
|
|
|
#[cfg(windows)]
|
2015-04-10 13:12:43 -05:00
|
|
|
pub fn sleeper() -> Child {
|
2014-03-25 10:44:40 -05:00
|
|
|
// 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 18:42:13 -05:00
|
|
|
// gaps in between so we're sure this process is alive for awhile
|
2014-05-05 16:33:55 -05:00
|
|
|
Command::new("ping").arg("127.0.0.1").arg("-n").arg("1000").spawn().unwrap()
|
2014-03-25 10:44:40 -05:00
|
|
|
}
|
|
|
|
|
2014-09-30 23:09:29 -05:00
|
|
|
fn test_destroy_twice() {
|
2014-03-25 10:44:40 -05:00
|
|
|
let mut p = sleeper();
|
2015-04-10 13:12:43 -05:00
|
|
|
t!(p.kill()); // this shouldn't crash...
|
|
|
|
let _ = p.kill(); // ...and nor should this (and nor should the destructor)
|
2014-09-30 23:09:29 -05:00
|
|
|
}
|
2013-05-03 18:08:43 -05:00
|
|
|
|
2015-04-10 13:12:43 -05:00
|
|
|
#[test]
|
|
|
|
fn test_destroy_actually_kills() {
|
2014-10-11 20:05:54 -05:00
|
|
|
#[cfg(all(unix,not(target_os="android")))]
|
2014-03-11 15:38:36 -05:00
|
|
|
static BLOCK_COMMAND: &'static str = "cat";
|
2013-05-03 18:08:43 -05:00
|
|
|
|
2014-10-11 20:05:54 -05:00
|
|
|
#[cfg(all(unix,target_os="android"))]
|
2014-03-11 15:38:36 -05:00
|
|
|
static BLOCK_COMMAND: &'static str = "/system/bin/cat";
|
2013-11-07 04:22:18 -06:00
|
|
|
|
2013-05-03 18:08:43 -05:00
|
|
|
#[cfg(windows)]
|
2014-03-11 15:38:36 -05:00
|
|
|
static BLOCK_COMMAND: &'static str = "cmd";
|
2013-05-03 18:08:43 -05:00
|
|
|
|
2013-05-12 07:58:00 -05:00
|
|
|
// this process will stay alive indefinitely trying to read from stdin
|
2015-04-10 15:51:53 -05:00
|
|
|
let mut p = Command::new(BLOCK_COMMAND)
|
|
|
|
.stdin(Stdio::piped())
|
|
|
|
.spawn().unwrap();
|
2013-05-03 18:08:43 -05:00
|
|
|
|
2015-04-10 13:12:43 -05:00
|
|
|
p.kill().unwrap();
|
2013-05-03 18:08:43 -05:00
|
|
|
|
2014-03-11 15:38:36 -05:00
|
|
|
// Don't let this test time out, this should be quick
|
2015-04-10 13:12:43 -05:00
|
|
|
let (tx, rx) = channel();
|
2015-03-30 13:00:05 -05:00
|
|
|
thread::spawn(move|| {
|
2015-04-10 13:12:43 -05:00
|
|
|
thread::sleep_ms(1000);
|
|
|
|
if rx.try_recv().is_err() {
|
|
|
|
process::exit(1);
|
2014-03-11 15:38:36 -05:00
|
|
|
}
|
2015-01-05 23:59:45 -06:00
|
|
|
});
|
2015-04-10 15:51:53 -05:00
|
|
|
let code = p.wait().unwrap().code();
|
|
|
|
if cfg!(windows) {
|
|
|
|
assert!(code.is_some());
|
|
|
|
} else {
|
|
|
|
assert!(code.is_none());
|
|
|
|
}
|
2015-04-10 13:12:43 -05:00
|
|
|
tx.send(());
|
2014-09-30 23:09:29 -05:00
|
|
|
}
|