summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorMarijn Haverbeke <marijnh@gmail.com>2012-01-09 14:53:13 +0100
committerMarijn Haverbeke <marijnh@gmail.com>2012-01-09 14:53:13 +0100
commitf30c5ea68611abaffece63787bd1f2c06854551b (patch)
tree5a0cfededb3facec9ddf4feac895c7c6f7315173 /src/test
parent0945fcf1fbd964157445f99f4a945ae4110da372 (diff)
downloadrust-f30c5ea68611abaffece63787bd1f2c06854551b.tar.gz
rust-f30c5ea68611abaffece63787bd1f2c06854551b.zip
Remove leftover comm.rs in std
(The actual comm module lives in core.)
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/sendfn-deep-copy.rs5
-rw-r--r--src/test/run-pass/sendfn-generic-fn.rs5
-rw-r--r--src/test/run-pass/sendfn-spawn-with-fn-arg.rs5
3 files changed, 6 insertions, 9 deletions
diff --git a/src/test/run-pass/sendfn-deep-copy.rs b/src/test/run-pass/sendfn-deep-copy.rs
index d87bad85bbd..7a1dda0f743 100644
--- a/src/test/run-pass/sendfn-deep-copy.rs
+++ b/src/test/run-pass/sendfn-deep-copy.rs
@@ -1,8 +1,7 @@
 use std;
 
-import std::comm;
-import std::comm::chan;
-import std::comm::send;
+import comm::chan;
+import comm::send;
 
 fn main() { test05(); }
 
diff --git a/src/test/run-pass/sendfn-generic-fn.rs b/src/test/run-pass/sendfn-generic-fn.rs
index 0a53d529d38..fb68e742362 100644
--- a/src/test/run-pass/sendfn-generic-fn.rs
+++ b/src/test/run-pass/sendfn-generic-fn.rs
@@ -1,8 +1,7 @@
 use std;
 
-import std::comm;
-import std::comm::chan;
-import std::comm::send;
+import comm::chan;
+import comm::send;
 
 fn main() { test05(); }
 
diff --git a/src/test/run-pass/sendfn-spawn-with-fn-arg.rs b/src/test/run-pass/sendfn-spawn-with-fn-arg.rs
index 281a438b7ba..20905ca7bb9 100644
--- a/src/test/run-pass/sendfn-spawn-with-fn-arg.rs
+++ b/src/test/run-pass/sendfn-spawn-with-fn-arg.rs
@@ -1,8 +1,7 @@
 use std;
 
-import std::comm;
-import std::comm::chan;
-import std::comm::send;
+import comm::chan;
+import comm::send;
 
 fn main() { test05(); }