* src/ltltest/Makefile.am (EXTRA_DIST): Distribute formulae.txt.

* src/ltltest/formulae.txt: New files (2200 LTL formulea generated
by Wring).
* src/ltltest/formules.ltl: Delete.
* src/reduc.test: Read formulae.txt.
This commit is contained in:
Alexandre Duret-Lutz 2004-05-24 12:59:34 +00:00
parent 57fa1c8b5f
commit a37bac0133
5 changed files with 2211 additions and 2177 deletions

View file

@ -1,3 +1,11 @@
2004-05-24 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/ltltest/Makefile.am (EXTRA_DIST): Distribute formulae.txt.
* src/ltltest/formulae.txt: New files (2200 LTL formulea generated
by Wring).
* src/ltltest/formules.ltl: Delete.
* src/reduc.test: Read formulae.txt.
2004-05-24 Soheib Baarir <Souheib.Baarir@lip6.fr>
* iface/gspn/ssp.hh (gspn_ssp_interface::gspn_ssp_interface): Add

View file

@ -57,7 +57,7 @@ tunenoform_SOURCES = equals.cc
tunenoform_CPPFLAGS = $(AM_CPPFLAGS) -DNENOFORM -DTUNABBREV
EXTRA_DIST = $(TESTS)
EXTRA_DIST = $(TESTS) formulae.txt
# Ordered by strength of the test. Test basic features first.
TESTS = \

2200
src/ltltest/formulae.txt Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -26,16 +26,14 @@
set -e
FICH=${1-$srcdir/formules.ltl}
FICH=${1-$srcdir/formulae.txt}
for opt in 0 1 2 3; do
rm -f result.data
cat $FICH |
while read f; do
if [ -n "$f" ] && [ "$f" != "####" ]; then
./reduc $opt "$f" >> result.data
fi
done
test $? == 0 || exit 1