Previous patch did not work on MacOS X, and I don't have shell

access to that host.

* src/tgbatest/kv.test: Use ${DOT-true} instead of ${DOT-:}.  I
don't know, the MacOS shell must be mixing the syntaxes for
${DOT:-} and ${DOT-:}.
* iface/nips/nipstest/dotty.test: Likewise
This commit is contained in:
Alexandre Duret-Lutz 2011-02-09 22:44:05 +01:00
parent cb7b7d16f3
commit ba564af08f
3 changed files with 12 additions and 2 deletions

View file

@ -26,6 +26,6 @@ set -e
BYTECODE="never.pr.b regbit.b"
for bytecode in $BYTECODE; do
run 0 "$top_builddir/dottynips" "$srcdir/$bytecode" > dotty || exit 1
"${DOT-:}" -Tps dotty > /dev/null || exit 1
"${DOT-true}" -Tps dotty > /dev/null || exit 1
rm -f dotty
done