rust/src/test/run-pass/task-comm-chan-cleanup4.rs

28 lines
548 B
Rust
Raw Normal View History

use std;
import int;
import comm;
import task;
// We're trying to trigger a race between send and port destruction that
// results in the string not being freed
2012-08-15 16:10:46 -05:00
fn starship(&&ch: comm::Chan<~str>) {
2012-06-30 18:19:07 -05:00
for int::range(0, 10) |_i| {
comm::send(ch, ~"pew pew");
}
}
2012-01-04 23:14:53 -06:00
fn starbase() {
2012-06-30 18:19:07 -05:00
for int::range(0, 10) |_i| {
let p = comm::port();
2012-01-04 23:14:53 -06:00
let c = comm::chan(p);
2012-06-30 18:19:07 -05:00
task::spawn(|| starship(c) );
task::yield();
}
}
fn main() {
2012-06-30 18:19:07 -05:00
for int::range(0, 10) |_i| {
task::spawn(|| starbase() );
}
}