* src/ltltest/defs.in, src/tgbatest/defs.in: Correctly set exitcode
when valgrind is not used. Reported by Denis Poitrenaud.
This commit is contained in:
parent
00487e1176
commit
4d73490a49
3 changed files with 7 additions and 3 deletions
|
|
@ -1,5 +1,9 @@
|
||||||
2004-04-20 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
2004-04-20 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||||
|
|
||||||
|
* src/ltltest/defs.in, src/tgbatest/defs.in: Correctly set exitcode
|
||||||
|
when valgrind is not used.
|
||||||
|
Reported by Denis Poitrenaud.
|
||||||
|
|
||||||
* src/tgba/tgba.hh (tgba::succ_iter): Doco.
|
* src/tgba/tgba.hh (tgba::succ_iter): Doco.
|
||||||
* src/tgba/tgbatba.hh (tgba_tba_proxy::state_is_accepting): Document
|
* src/tgba/tgbatba.hh (tgba_tba_proxy::state_is_accepting): Document
|
||||||
it.
|
it.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# -*- shell-script -*-
|
# -*- shell-script -*-
|
||||||
# Copyright (C) 2003 Laboratoire d'Informatique de Paris 6 (LIP6),
|
# Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
# département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
# département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
# et Marie Curie.
|
# et Marie Curie.
|
||||||
#
|
#
|
||||||
|
|
@ -61,7 +61,7 @@ run()
|
||||||
test -z "`sed 1q valgrind.err`" || exit 50
|
test -z "`sed 1q valgrind.err`" || exit 50
|
||||||
rm -f valgrind.err
|
rm -f valgrind.err
|
||||||
else
|
else
|
||||||
"$@" || exitcode $?
|
"$@" || exitcode=$?
|
||||||
fi
|
fi
|
||||||
test $exitcode = $expected_exitcode || exit 1
|
test $exitcode = $expected_exitcode || exit 1
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@ run()
|
||||||
test -z "`sed 1q valgrind.err`" || exit 50
|
test -z "`sed 1q valgrind.err`" || exit 50
|
||||||
rm -f valgrind.err
|
rm -f valgrind.err
|
||||||
else
|
else
|
||||||
"$@" || exitcode $?
|
"$@" || exitcode=$?
|
||||||
fi
|
fi
|
||||||
test $exitcode = $expected_exitcode || exit 1
|
test $exitcode = $expected_exitcode || exit 1
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue