Run valgrind in test cases.

* src/tgbatest/defs.in (VALGRIND, run): Define.
* src/tgbatest/bddprod.test, src/tgbatest/dupexp.test,
src/tgbatest/emptchk.test, src/tgbatest/emptchke.test,
src/tgbatest/explicit.test, src/tgbatest/explpro2.test,
src/tgbatest/explpro3.test, src/tgbatest/explprod.test,
src/tgbatest/ltl2tgba.test, src/tgbatest/ltlprod.test,
src/tgbatest/mixprod.test, src/tgbatest/readsave.test,
src/tgbatest/tgbaread.test, src/tgbatest/tripprod.test: Use run().
This commit is contained in:
Alexandre Duret-Lutz 2004-01-08 15:44:27 +00:00
parent 7aecf4ad09
commit 92cc5f9b9f
16 changed files with 112 additions and 81 deletions

View file

@ -1,5 +1,5 @@
#!/bin/sh
# 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
# et Marie Curie.
#
@ -28,11 +28,11 @@ set -e
# We don't check the output, but just running these might be enough to
# trigger assertions.
./bddprod a b
./bddprod a a
./bddprod 'a U b' 'X f'
./bddprod 'X a' 'X a'
./bddprod 'X a' 'a U b'
./bddprod 'a & b & c' 'b & d & c'
./bddprod 'a | b | (c U (d & (g U (h ^ i))))' 'h ^ i'
./bddprod 'Xa & (b U !a) & (b U !a)' '(b U !a) & f'
run 0 ./bddprod a b
run 0 ./bddprod a a
run 0 ./bddprod 'a U b' 'X f'
run 0 ./bddprod 'X a' 'X a'
run 0 ./bddprod 'X a' 'a U b'
run 0 ./bddprod 'a & b & c' 'b & d & c'
run 0 ./bddprod 'a | b | (c U (d & (g U (h ^ i))))' 'h ^ i'
run 0 ./bddprod 'Xa & (b U !a) & (b U !a)' '(b U !a) & f'