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

@ -1,3 +1,13 @@
2011-02-09 Alexandre Duret-Lutz <adl@lrde.epita.fr>
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
2011-02-09 Alexandre Duret-Lutz <adl@lrde.epita.fr>
Avoid running "dot" when it is not installed...

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

View file

@ -27,7 +27,7 @@ set -e
check ()
{
run 0 ../ltl2tgba -f -KV "$1" > out.dot
"${DOT-:}" out.dot > /dev/null
"${DOT-true}" out.dot > /dev/null
rm -f out.dot
}