Skip to content

Commit 94ebd39

Browse files
committed
---
yaml --- r: 38595 b: refs/heads/incoming c: 2d7d12b h: refs/heads/master i: 38593: cce3d00 38591: 8e2c7af v: v3
1 parent 0deeb61 commit 94ebd39

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
9-
refs/heads/incoming: beb74710167fed2ac944dc84e2403ad0c410cb94
9+
refs/heads/incoming: 2d7d12b902a9f6237994f74888878220cb2ffbed
1010
refs/heads/dist-snap: 22efa39382d41b084fde1719df7ae8ce5697d8c9
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/src/compiletest/compiletest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ fn make_tests(config: config) -> ~[test::TestDesc] {
145145
tests.push(make_test(config, file))
146146
}
147147
}
148-
return tests;
148+
move tests
149149
}
150150

151151
fn is_test(config: config, testfile: &Path) -> bool {

branches/incoming/src/compiletest/procsrv.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ fn run(lib_path: ~str,
6060
writeclose(pipe_in.out, input);
6161
let p = pipes::PortSet();
6262
let ch = p.chan();
63-
do task::spawn_sched(task::SingleThreaded) {
63+
do task::spawn_sched(task::SingleThreaded) |move ch| {
6464
let errput = readclose(pipe_err.in);
6565
ch.send((2, errput));
6666
}
6767
let ch = p.chan();
68-
do task::spawn_sched(task::SingleThreaded) {
68+
do task::spawn_sched(task::SingleThreaded) |move ch| {
6969
let output = readclose(pipe_out.in);
7070
ch.send((1, output));
7171
}

0 commit comments

Comments
 (0)