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:
parent
cb7b7d16f3
commit
ba564af08f
3 changed files with 12 additions and 2 deletions
10
ChangeLog
10
ChangeLog
|
|
@ -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>
|
2011-02-09 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||||
|
|
||||||
Avoid running "dot" when it is not installed...
|
Avoid running "dot" when it is not installed...
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,6 @@ set -e
|
||||||
BYTECODE="never.pr.b regbit.b"
|
BYTECODE="never.pr.b regbit.b"
|
||||||
for bytecode in $BYTECODE; do
|
for bytecode in $BYTECODE; do
|
||||||
run 0 "$top_builddir/dottynips" "$srcdir/$bytecode" > dotty || exit 1
|
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
|
rm -f dotty
|
||||||
done
|
done
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ set -e
|
||||||
check ()
|
check ()
|
||||||
{
|
{
|
||||||
run 0 ../ltl2tgba -f -KV "$1" > out.dot
|
run 0 ../ltl2tgba -f -KV "$1" > out.dot
|
||||||
"${DOT-:}" out.dot > /dev/null
|
"${DOT-true}" out.dot > /dev/null
|
||||||
rm -f out.dot
|
rm -f out.dot
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue