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

51 lines
1.3 KiB
Rust
Raw Normal View History

// Copyright 2012 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.
2012-09-05 14:32:05 -05:00
use pipes::send;
use pipes::Chan;
2012-09-05 14:32:05 -05:00
use pipes::recv;
pub fn main() { test00(); }
2010-07-28 18:58:17 -05:00
2011-04-19 15:35:49 -05:00
fn test00() {
let mut r: int = 0;
let mut sum: int = 0;
let p = pipes::PortSet();
2012-07-25 16:05:06 -05:00
let c0 = p.chan();
let c1 = p.chan();
let c2 = p.chan();
let c3 = p.chan();
2011-07-27 07:19:39 -05:00
let number_of_messages: int = 1000;
let mut i: int = 0;
2011-07-27 07:19:39 -05:00
while i < number_of_messages {
2012-07-25 16:05:06 -05:00
c0.send(i + 0);
c1.send(i + 0);
c2.send(i + 0);
c3.send(i + 0);
2010-07-28 18:58:17 -05:00
i += 1;
}
i = 0;
2011-07-27 07:19:39 -05:00
while i < number_of_messages {
2012-07-25 16:05:06 -05:00
r = p.recv();
sum += r;
2012-07-25 16:05:06 -05:00
r = p.recv();
sum += r;
2012-07-25 16:05:06 -05:00
r = p.recv();
sum += r;
2012-07-25 16:05:06 -05:00
r = p.recv();
sum += r;
2010-07-28 18:58:17 -05:00
i += 1;
}
assert (sum == 1998000);
// assert (sum == 4 * ((number_of_messages *
2010-08-09 08:53:37 -05:00
// (number_of_messages - 1)) / 2));
}