diff options
Diffstat (limited to 't/tap-log.sh')
-rwxr-xr-x | t/tap-log.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/tap-log.sh b/t/tap-log.sh index 5faf83894..92d63ec01 100755 --- a/t/tap-log.sh +++ b/t/tap-log.sh @@ -103,8 +103,8 @@ for result in xfail fail xpass skip error; do $FGREP "$pmarker $result $pmarker" my.log || st=1 $FGREP "$cmarker $result $cmarker" my.log || st=1 done -test `$FGREP -c "$pmarker" my.log` -eq 5 -test `$FGREP -c "$cmarker" my.log` -eq 5 +test $($FGREP -c "$pmarker" my.log) -eq 5 +test $($FGREP -c "$cmarker" my.log) -eq 5 # Passed test scripts shouldn't be mentioned in the global log. $EGREP '(^pass|[^x]pass)\.test' my.log && Exit 1 @@ -139,8 +139,8 @@ test ! -f my.log test ! -f test-suite.log # Check that VERBOSE causes the global testsuite log to be # emitted on stdout. -out=`cat stdout` -log=`cat global.log` +out=$(cat stdout) +log=$(cat global.log) case $out in *"$log"*) ;; *) Exit 1;; esac touch error2.log test-suite.log my.log |