rust/src/test/run-pass/task-comm-0.rs

31 lines
536 B
Rust
Raw Normal View History

// xfail-fast
#[legacy_modes];
extern mod std;
2012-09-05 12:32:05 -07:00
use pipes::Chan;
use pipes::Port;
2011-07-27 14:19:39 +02:00
fn main() { test05(); }
2012-08-28 11:11:15 -07:00
fn test05_start(ch : Chan<int>) {
2012-07-25 14:05:06 -07:00
ch.send(10);
2012-08-22 17:24:52 -07:00
error!("sent 10");
2012-07-25 14:05:06 -07:00
ch.send(20);
2012-08-22 17:24:52 -07:00
error!("sent 20");
2012-07-25 14:05:06 -07:00
ch.send(30);
2012-08-22 17:24:52 -07:00
error!("sent 30");
}
2011-04-19 13:35:49 -07:00
fn test05() {
2012-07-25 14:05:06 -07:00
let (ch, po) = pipes::stream();
2012-09-18 22:45:24 -07:00
task::spawn(|move ch| test05_start(ch) );
2012-07-25 14:05:06 -07:00
let mut value = po.recv();
log(error, value);
2012-07-25 14:05:06 -07:00
value = po.recv();
log(error, value);
2012-07-25 14:05:06 -07:00
value = po.recv();
log(error, value);
assert (value == 30);
}