Make debugging merge.py in the test suite possible.
authorRobert Collins <rbtcollins@hp.com>
Tue, 28 Jan 2014 06:19:16 +0000 (19:19 +1300)
committerRobert Collins <rbtcollins@hp.com>
Tue, 28 Jan 2014 12:39:27 +0000 (01:39 +1300)
Change-Id: Ie30f0421601cbd5cf8f88dcc3dcf818b1db589ba

test_merge.bash

index 2f8a4cc..61462f6 100755 (executable)
@@ -12,7 +12,7 @@ run_test() {
     local expected=$2
     result=$(mktemp /tmp/test_merge.XXXXXX)
     fail=0
-    $cmd > $result
+    $cmd --output $result
     if ! cmp $result $expected ; then
         diff -u $expected $result || :
         echo FAIL - $cmd result does not match expected