rust/src/test/run-pass/pipe-detect-term.rs

50 lines
892 B
Rust
Raw Normal View History

// Make sure that we can detect when one end of the pipe is closed.
// xfail-pretty
use std;
import std::timer::sleep;
import std::uv;
import pipes::{recv};
proto! oneshot {
waiting:send {
signal -> signaled
}
signaled:send { }
}
fn main() {
let iotask = uv::global_loop::get();
let c = pipes::spawn_service(oneshot::init, |p| {
alt recv(p) {
some(*) { fail }
none { }
}
});
sleep(iotask, 100);
let b = task::builder();
task::unsupervise(b);
task::run(b, failtest);
}
// Make sure the right thing happens during failure.
fn failtest() {
let iotask = uv::global_loop::get();
let (c, p) = oneshot::init();
do task::spawn_with(c) |_c| {
fail;
}
#error("%?", recv(p));
// make sure we get killed if we missed it in the receive.
loop { task::yield() }
}