Skip to content

Commit

Permalink
compiletest: runtest.rs tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
yichoi committed Jun 1, 2013
1 parent 8b24a96 commit 89c5ad6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compiletest/runtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ fn _arm_exec_compiled_test(config: &config, props: &TestProps,
}

// get stdout of result
runargs = ~[];
runargs = ~[];
runargs.push(~"shell");
runargs.push(~"cat");
runargs.push(fmt!("%s/%s.stdout", config.adb_test_dir, prog_short));
Expand All @@ -798,7 +798,7 @@ fn _arm_exec_compiled_test(config: &config, props: &TestProps,
procsrv::run("", config.adb_path, runargs, ~[(~"",~"")], Some(~""));

// get stderr of result
runargs = ~[];
runargs = ~[];
runargs.push(~"shell");
runargs.push(~"cat");
runargs.push(fmt!("%s/%s.stderr", config.adb_test_dir, prog_short));
Expand Down

0 comments on commit 89c5ad6

Please sign in to comment.