+2008-12-16 Bruno Haible <bruno@clisp.org>
+
+ * tests/test-parse-duration.sh: Produce no output when the test
+ succeeds.
+
2008-12-16 Bruno Haible <bruno@clisp.org>
* tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
P 1-2-25 T 5:6:7
_EOF_
-ls -l "${tmpf}"
-
exec 3< "${tmpf}"
while read -u3 line
do
- v=`${exe} "${line}"` || die "Failed: ${exe} '${line}'"
+ v=`${exe} "${line}"` || { ls -l "${tmpf}"; die "Failed: ${exe} '${line}'"; }
test $v -eq 38898367 || die $v is not 38898367
- echo OK: ${line}
done
exec 3>&-