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

76 lines
1.9 KiB
Rust
Raw Normal View History

// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
// 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.
// ignore-fast
extern crate extra;
use std::task;
pub fn main() { info!("===== WITHOUT THREADS ====="); test00(); }
fn test00_start(ch: &Chan<int>, message: int, count: int) {
info!("Starting test00_start");
let mut i: int = 0;
while i < count {
info!("Sending Message");
2012-07-25 21:05:06 +00:00
ch.send(message + 0);
i = i + 1;
}
info!("Ending test00_start");
}
fn test00() {
2011-07-27 12:19:39 +00:00
let number_of_tasks: int = 16;
let number_of_messages: int = 4;
info!("Creating tasks");
let (po, ch) = Chan::new();
let mut i: int = 0;
// Create and spawn tasks...
let mut results = ~[];
2011-07-27 12:19:39 +00:00
while i < number_of_tasks {
let ch = ch.clone();
2013-05-07 02:29:04 +00:00
let mut builder = task::task();
results.push(builder.future_result());
2013-05-07 02:29:04 +00:00
builder.spawn({
2013-12-06 02:19:06 +00:00
let ch = ch;
let i = i;
2013-12-06 02:19:06 +00:00
proc() {
test00_start(&ch, i, number_of_messages)
}
});
2010-08-09 13:53:37 +00:00
i = i + 1;
}
// Read from spawned tasks...
let mut sum = 0;
2013-08-17 15:37:42 +00:00
for _r in results.iter() {
i = 0;
2011-07-27 12:19:39 +00:00
while i < number_of_messages {
2012-07-25 21:05:06 +00:00
let value = po.recv();
sum += value;
i = i + 1;
}
}
// Join spawned tasks...
for r in results.iter() { r.recv(); }
info!("Completed: Final number is: ");
error!("{:?}", sum);
// assert (sum == (((number_of_tasks * (number_of_tasks - 1)) / 2) *
2010-08-09 13:53:37 +00:00
// number_of_messages));
assert_eq!(sum, 480);
}