about summary refs log tree commit diff
path: root/src/test/ui/threads-sendsync/task-comm-4.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/threads-sendsync/task-comm-4.rs')
-rw-r--r--src/test/ui/threads-sendsync/task-comm-4.rs45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/test/ui/threads-sendsync/task-comm-4.rs b/src/test/ui/threads-sendsync/task-comm-4.rs
deleted file mode 100644
index b259d69d15d..00000000000
--- a/src/test/ui/threads-sendsync/task-comm-4.rs
+++ /dev/null
@@ -1,45 +0,0 @@
-// run-pass
-#![allow(unused_assignments)]
-
-use std::sync::mpsc::channel;
-
-pub fn main() { test00(); }
-
-fn test00() {
-    let mut r: isize = 0;
-    let mut sum: isize = 0;
-    let (tx, rx) = channel();
-    tx.send(1).unwrap();
-    tx.send(2).unwrap();
-    tx.send(3).unwrap();
-    tx.send(4).unwrap();
-    r = rx.recv().unwrap();
-    sum += r;
-    println!("{}", r);
-    r = rx.recv().unwrap();
-    sum += r;
-    println!("{}", r);
-    r = rx.recv().unwrap();
-    sum += r;
-    println!("{}", r);
-    r = rx.recv().unwrap();
-    sum += r;
-    println!("{}", r);
-    tx.send(5).unwrap();
-    tx.send(6).unwrap();
-    tx.send(7).unwrap();
-    tx.send(8).unwrap();
-    r = rx.recv().unwrap();
-    sum += r;
-    println!("{}", r);
-    r = rx.recv().unwrap();
-    sum += r;
-    println!("{}", r);
-    r = rx.recv().unwrap();
-    sum += r;
-    println!("{}", r);
-    r = rx.recv().unwrap();
-    sum += r;
-    println!("{}", r);
-    assert_eq!(sum, 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8);
-}