]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/task-comm-9.rs
rollup merge of #19898: Aatch/issue-19684
[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 use std::thread::Thread;
12
13 pub fn main() { test00(); }
14
15 fn test00_start(c: &Sender<int>, number_of_messages: int) {
16     let mut i: int = 0;
17     while i < number_of_messages { c.send(i + 0); i += 1; }
18 }
19
20 fn test00() {
21     let r: int = 0;
22     let mut sum: int = 0;
23     let (tx, rx) = channel();
24     let number_of_messages: int = 10;
25
26     let result = Thread::spawn(move|| {
27         test00_start(&tx, number_of_messages);
28     });
29
30     let mut i: int = 0;
31     while i < number_of_messages {
32         sum += rx.recv();
33         println!("{}", r);
34         i += 1;
35     }
36
37     result.join();
38
39     assert_eq!(sum, number_of_messages * (number_of_messages - 1) / 2);
40 }