compiletest: runtest.rs tidy

This commit is contained in:
Young-il Choi 2013-06-01 17:33:11 +09:00
parent 8b24a96e17
commit 89c5ad69f0

View file

@ -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));
@ -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));