Kill src/ltltest/randltl and replace it by src/bin/randltl.

* src/ltltest/randltl.cc: Delete.
* src/ltltest/Makefile.am (noinst_PROGRAMS, randltl_SOURCES): Remove.
* src/ltltest/reduc.test, src/ltltest/reducpsl.test,
src/ltltest/utf8.test, src/tgbatest/randpsl.test,
bench/emptchk/README: Adjust to use bin/randltl.
This commit is contained in:
Alexandre Duret-Lutz 2012-09-07 14:24:06 +02:00
parent 1257893fb2
commit 649e8e2def
7 changed files with 20 additions and 445 deletions

View file

@ -1,5 +1,5 @@
#!/bin/sh
# Copyright (C) 2011 Laboratoire de Recherche et Développement
# Copyright (C) 2011, 2012 Laboratoire de Recherche et Développement
# de l'Epita (LRDE).
#
# This file is part of Spot, a model checking library.
@ -36,7 +36,11 @@ check_psl()
../ltl2tgba -f -x -R3 -Pout.tgba -E "!($1)"
}
../../ltltest/randltl -F 50 -f 30 -r 12 -u -s 0 -P a b c |
# Generate 50 random unique PSL formula that do not simplify to LTL
# formulae, and that have a size of at lease 12.
../../bin/randltl -n -1 --tree-size 30 --seed 0 --psl a b c |
../../bin/ltlfilt -r --size-min 12 --unique |
../../bin/ltlfilt -v --ltl | head -n 50 |
while read formula; do
check_psl "$formula"
done