aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/task-comm-6.rs
diff options
context:
space:
mode:
authorMichael Bebenita <[email protected]>2010-07-28 16:58:17 -0700
committerGraydon Hoare <[email protected]>2010-07-28 20:30:30 -0700
commit74a79fff3aa1374e6dc5ef75deb8f216cb3136c9 (patch)
treea8637f58321ac19e1eab66040b2bb7e446a98804 /src/test/run-pass/task-comm-6.rs
parentLog dead tasks when dom is just waiting for refcounts to drop. (diff)
downloadrust-74a79fff3aa1374e6dc5ef75deb8f216cb3136c9.tar.xz
rust-74a79fff3aa1374e6dc5ef75deb8f216cb3136c9.zip
Add a bunch of comm tests.
Diffstat (limited to 'src/test/run-pass/task-comm-6.rs')
-rw-r--r--src/test/run-pass/task-comm-6.rs36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/test/run-pass/task-comm-6.rs b/src/test/run-pass/task-comm-6.rs
new file mode 100644
index 00000000..c579a98c
--- /dev/null
+++ b/src/test/run-pass/task-comm-6.rs
@@ -0,0 +1,36 @@
+io fn main() -> () {
+ test00();
+}
+
+io fn test00() {
+ let int r = 0;
+ let int sum = 0;
+ let port[int] p = port();
+
+ let chan[int] c0 = chan(p);
+ let chan[int] c1 = chan(p);
+ let chan[int] c2 = chan(p);
+ let chan[int] c3 = chan(p);
+
+ let int number_of_messages = 1000;
+
+ let int i = 0;
+ while (i < number_of_messages) {
+ c0 <| i;
+ c1 <| i;
+ c2 <| i;
+ c3 <| i;
+ i += 1;
+ }
+
+ i = 0;
+ while (i < number_of_messages) {
+ r <- p; sum += r;
+ r <- p; sum += r;
+ r <- p; sum += r;
+ r <- p; sum += r;
+ i += 1;
+ }
+
+ check (sum == 4 * ((number_of_messages * (number_of_messages - 1)) / 2));
+} \ No newline at end of file