]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/task-comm-9.rs
auto merge of #13711 : alexcrichton/rust/snapshots, r=brson
[rust.git] / src / test / run-pass / task-comm-9.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11
12 use std::task::TaskBuilder;
13
14 pub fn main() { test00(); }
15
16 fn test00_start(c: &Sender<int>, number_of_messages: int) {
17     let mut i: int = 0;
18     while i < number_of_messages { c.send(i + 0); i += 1; }
19 }
20
21 fn test00() {
22     let r: int = 0;
23     let mut sum: int = 0;
24     let (tx, rx) = channel();
25     let number_of_messages: int = 10;
26
27     let mut builder = TaskBuilder::new();
28     let result = builder.future_result();
29     builder.spawn(proc() {
30         test00_start(&tx, number_of_messages);
31     });
32
33     let mut i: int = 0;
34     while i < number_of_messages {
35         sum += rx.recv();
36         println!("{:?}", r);
37         i += 1;
38     }
39
40     result.recv();
41
42     assert_eq!(sum, number_of_messages * (number_of_messages - 1) / 2);
43 }