]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/unique-send-2.rs
e0785779ab3c29667665c77b94aac8c7b21cc6db
[rust.git] / src / test / run-pass / unique-send-2.rs
1 // Copyright 2012 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 #![allow(unknown_features)]
12 #![feature(box_syntax)]
13
14 use std::sync::mpsc::{channel, Sender};
15 use std::thread;
16
17 fn child(tx: &Sender<Box<uint>>, i: uint) {
18     tx.send(box i).unwrap();
19 }
20
21 pub fn main() {
22     let (tx, rx) = channel();
23     let n = 100;
24     let mut expected = 0;
25     let _t = (0..n).map(|i| {
26         expected += i;
27         let tx = tx.clone();
28         thread::scoped(move|| {
29             child(&tx, i)
30         })
31     }).collect::<Vec<_>>();
32
33     let mut actual = 0;
34     for _ in 0..n {
35         let j = rx.recv().unwrap();
36         actual += *j;
37     }
38
39     assert_eq!(expected, actual);
40 }