about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYoung-il Choi <duddlf.choi@samsung.com>2013-06-01 17:33:11 +0900
committerYoung-il Choi <duddlf.choi@samsung.com>2013-06-01 17:33:11 +0900
commit89c5ad69f052cf9f8ee5e8db6af4bf31a626088b (patch)
treed372cddbcc1f71130323d75ab41c4c65fdc99a8c
parent8b24a96e1734d4fc028dfeebf5b13760790a9ac4 (diff)
compiletest: runtest.rs tidy
-rw-r--r--src/compiletest/runtest.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiletest/runtest.rs b/src/compiletest/runtest.rs
index 8ae4f7c3793..5673cce2668 100644
--- a/src/compiletest/runtest.rs
+++ b/src/compiletest/runtest.rs
@@ -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));