about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/compiletest/compiletest.rc2
-rw-r--r--src/compiletest/procsrv.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/compiletest/compiletest.rc b/src/compiletest/compiletest.rc
index 5557b113176..5ad616963fa 100644
--- a/src/compiletest/compiletest.rc
+++ b/src/compiletest/compiletest.rc
@@ -177,7 +177,7 @@ pub fn make_tests(config: config) -> ~[test::TestDescAndFn] {
             tests.push(make_test(config, file))
         }
     }
-    move tests
+    tests
 }
 
 pub fn is_test(config: config, testfile: &Path) -> bool {
diff --git a/src/compiletest/procsrv.rs b/src/compiletest/procsrv.rs
index 304266f0f79..432258b26a6 100644
--- a/src/compiletest/procsrv.rs
+++ b/src/compiletest/procsrv.rs
@@ -78,12 +78,12 @@ pub fn run(lib_path: ~str,
     writeclose(pipe_in.out, input);
     let p = pipes::PortSet();
     let ch = p.chan();
-    do task::spawn_sched(task::SingleThreaded) |move ch| {
+    do task::spawn_sched(task::SingleThreaded) || {
         let errput = readclose(pipe_err.in);
         ch.send((2, errput));
     }
     let ch = p.chan();
-    do task::spawn_sched(task::SingleThreaded) |move ch| {
+    do task::spawn_sched(task::SingleThreaded) || {
         let output = readclose(pipe_out.in);
         ch.send((1, output));
     }