]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/task-comm-0.rs
Imported Upstream version 1.0.0~beta.3
[rustc.git] / src / test / run-pass / task-comm-0.rs
CommitLineData
1a4d82fc 1// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
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
c34b1796
AL
11#![feature(std_misc)]
12
13use std::thread;
1a4d82fc 14use std::sync::mpsc::{channel, Sender};
223e47cc
LB
15
16pub fn main() { test05(); }
17
c34b1796 18fn test05_start(tx : &Sender<isize>) {
1a4d82fc
JJ
19 tx.send(10).unwrap();
20 println!("sent 10");
21 tx.send(20).unwrap();
22 println!("sent 20");
23 tx.send(30).unwrap();
24 println!("sent 30");
223e47cc
LB
25}
26
27fn test05() {
1a4d82fc 28 let (tx, rx) = channel();
9346a6ac 29 let t = thread::spawn(move|| { test05_start(&tx) });
c34b1796 30 let mut value: isize = rx.recv().unwrap();
1a4d82fc
JJ
31 println!("{}", value);
32 value = rx.recv().unwrap();
33 println!("{}", value);
34 value = rx.recv().unwrap();
35 println!("{}", value);
970d7e83 36 assert_eq!(value, 30);
9346a6ac 37 t.join();
223e47cc 38}