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

64 lines
1.4 KiB
Rust
Raw Normal View History

// xfail-fast
#[legacy_modes];
extern mod std;
2012-09-05 14:32:05 -05:00
use pipes::Chan;
use pipes::send;
use pipes::recv;
2012-08-22 19:24:52 -05:00
fn main() { debug!("===== WITHOUT THREADS ====="); test00(); }
2012-08-28 13:11:15 -05:00
fn test00_start(ch: Chan<int>, message: int, count: int) {
2012-08-22 19:24:52 -05:00
debug!("Starting test00_start");
let mut i: int = 0;
while i < count {
2012-08-22 19:24:52 -05:00
debug!("Sending Message");
2012-07-25 16:05:06 -05:00
ch.send(message + 0);
i = i + 1;
}
2012-08-22 19:24:52 -05:00
debug!("Ending test00_start");
}
fn test00() {
2011-07-27 07:19:39 -05:00
let number_of_tasks: int = 16;
let number_of_messages: int = 4;
2012-08-22 19:24:52 -05:00
debug!("Creating tasks");
let po = pipes::PortSet();
let mut i: int = 0;
// Create and spawn tasks...
let mut results = ~[];
2011-07-27 07:19:39 -05:00
while i < number_of_tasks {
let ch = po.chan();
do task::task().future_result(|+r| {
2012-09-19 00:45:24 -05:00
results.push(move r);
}).spawn |move ch, copy i| {
2012-01-04 23:14:53 -06:00
test00_start(ch, i, number_of_messages)
2012-02-18 18:34:42 -06:00
}
2010-08-09 08:53:37 -05:00
i = i + 1;
}
// Read from spawned tasks...
let mut sum = 0;
2012-06-30 18:19:07 -05:00
for results.each |r| {
i = 0;
2011-07-27 07:19:39 -05:00
while i < number_of_messages {
2012-07-25 16:05:06 -05:00
let value = po.recv();
sum += value;
i = i + 1;
}
}
// Join spawned tasks...
for results.each |r| { r.recv(); }
2012-08-22 19:24:52 -05:00
debug!("Completed: Final number is: ");
log(error, sum);
// assert (sum == (((number_of_tasks * (number_of_tasks - 1)) / 2) *
2010-08-09 08:53:37 -05:00
// number_of_messages));
assert (sum == 480);
}