File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
branches/try/src/compiletest Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 3bbcac322669cff3abde5be937cc4ec3860f3985
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: a6d9689399d091c3265f00434a69c551a61c28dc
5
- refs/heads/try: 5912b1448ca1b5bcddf8af1ed9e16fc41775af9c
5
+ refs/heads/try: e61b243edffc01854e6e139ea3f5124ec58cf16c
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ pub fn make_tests(config: config) -> ~[test::TestDescAndFn] {
177
177
tests.push(make_test(config, file))
178
178
}
179
179
}
180
- move tests
180
+ tests
181
181
}
182
182
183
183
pub fn is_test(config: config, testfile: &Path) -> bool {
Original file line number Diff line number Diff line change @@ -78,12 +78,12 @@ pub fn run(lib_path: ~str,
78
78
writeclose ( pipe_in. out , input) ;
79
79
let p = pipes:: PortSet ( ) ;
80
80
let ch = p. chan ( ) ;
81
- do task:: spawn_sched ( task:: SingleThreaded ) |move ch | {
81
+ do task:: spawn_sched ( task:: SingleThreaded ) || {
82
82
let errput = readclose ( pipe_err. in ) ;
83
83
ch. send ( ( 2 , errput) ) ;
84
84
}
85
85
let ch = p. chan ( ) ;
86
- do task:: spawn_sched ( task:: SingleThreaded ) |move ch | {
86
+ do task:: spawn_sched ( task:: SingleThreaded ) || {
87
87
let output = readclose ( pipe_out. in ) ;
88
88
ch. send ( ( 1 , output) ) ;
89
89
}
You can’t perform that action at this time.
0 commit comments