diff options
| author | 2014-10-21 17:02:25 +0000 | |
|---|---|---|
| committer | 2014-10-21 17:02:25 +0000 | |
| commit | 58e560f50d41f1be409079bca9c9199170b3302f (patch) | |
| tree | 25e37f294fca3099e9e00f4cca499014f2ebe08d | |
| parent | 4403b08717af2fe476e933c8cb69f53fe37a6c5a (diff) | |
| parent | f6930a83c925507a63d0b2c86429a4d93fa83a72 (diff) | |
Merge "ART: Fix run-test script"
| -rwxr-xr-x | test/run-test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/run-test b/test/run-test index 62c701fa9c..36288d7bac 100755 --- a/test/run-test +++ b/test/run-test @@ -526,9 +526,9 @@ else "./${run}" $run_args "$@" >"$output" 2>&1 else cp "$build_output" "$output" - echo "Failed to build in tmpdir=${tmp_dir} from oldwd=${oldwd} and cwd=`pwd`" - echo "Non-canonical tmpdir was ${noncanonical_tmp_dir}" - echo "build exit status: $build_exit" >>"$output" + echo "Failed to build in tmpdir=${tmp_dir} from oldwd=${oldwd} and cwd=`pwd`" >> "$output" + echo "Non-canonical tmpdir was ${noncanonical_tmp_dir}" >> "$output" + echo "build exit status: $build_exit" >> "$output" fi ./$check_cmd "$expected" "$output" if [ "$?" = "0" ]; then |