summaryrefslogtreecommitdiff
path: root/t/tap-out-of-order.sh
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-06-22 20:05:11 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-06-22 20:18:25 +0200
commitcf4f853ca2695a9e3cd35836cd610279fb3a6864 (patch)
treeac27ad32859255c4efdc2253f47e88efb6896d28 /t/tap-out-of-order.sh
parentffc53e60412bf7df5c1c7ee68f11a10682b5499e (diff)
parent3b83966e81cd038e79be4225225787d3766c54ec (diff)
downloadautomake-cf4f853ca2695a9e3cd35836cd610279fb3a6864.tar.gz
Merge branch 'master' into ng/master
* master: tests: prefer using 'is_newest' over 'ls -t' hacks tests: implement is_newest as an auxiliary script, not shell function tests: fix some spurious failures in VPATH setup tests: work in VPATH setup again tests: automatic re-execution works for non-POSIX shells too tests: use more POSIX shell features our test scripts docs: avoid failures with development version of Texinfo (4.13.90) typofix: s/test derivers/test drivers/ in check.am comments typofix: s/env/even/ in comments in GNUmakefile Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/tap-out-of-order.sh')
-rwxr-xr-xt/tap-out-of-order.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/tap-out-of-order.sh b/t/tap-out-of-order.sh
index 2a2ad9faf..eec90b3ec 100755
--- a/t/tap-out-of-order.sh
+++ b/t/tap-out-of-order.sh
@@ -63,10 +63,10 @@ cat stdout
count_test_results total=17 pass=8 fail=0 xpass=0 xfail=1 skip=0 error=8
-test `$FGREP -c ': a.test' stdout` -eq 3
-test `$FGREP -c ': b.test' stdout` -eq 5
-test `$FGREP -c ': c.test' stdout` -eq 4
-test `$FGREP -c ': d.test' stdout` -eq 5
+test $($FGREP -c ': a.test' stdout) -eq 3
+test $($FGREP -c ': b.test' stdout) -eq 5
+test $($FGREP -c ': c.test' stdout) -eq 4
+test $($FGREP -c ': d.test' stdout) -eq 5
grep '^ERROR: a\.test 71 # OUT-OF-ORDER (expecting 3)$' stdout
grep '^ERROR: b\.test 4 foo # OUT-OF-ORDER (expecting 3)$' stdout