Suggested by František Blahoudek. * bin/ltlcross.cc: Implement the two options. * doc/org/ltlcross.org, NEWS: Document them. * tests/core/complementation.test: Adjust test case. * tests/core/ltlcross3.test, tests/core/unambig.test: More tests.
219 lines
7.4 KiB
Bash
Executable file
219 lines
7.4 KiB
Bash
Executable file
#!/bin/sh
|
|
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2012, 2013, 2014, 2015, 2016 Laboratoire de Recherche
|
|
# et Développement de l'Epita (LRDE).
|
|
#
|
|
# This file is part of Spot, a model checking library.
|
|
#
|
|
# Spot is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Spot is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
# License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
. ./defs
|
|
set -e
|
|
|
|
check_csv()
|
|
{
|
|
# Make sure all lines in $1 have the same number of comas
|
|
sed 's/[^,]//g' < "$1" |
|
|
( read first
|
|
while read l; do
|
|
test "x$first" = "x$l" || exit 1
|
|
done)
|
|
}
|
|
|
|
ltl2tgba=ltl2tgba
|
|
|
|
# Make sure ltlcross quotes formulas correctly
|
|
cat >formula <<\EOF
|
|
G"a'-'>'b"
|
|
EOF
|
|
run 0 ltlcross -F formula --csv=out.csv \
|
|
"$ltl2tgba -s %f >%N" \
|
|
"$ltl2tgba --lenient -s %s >%N"
|
|
|
|
run 2 ltlcross "$ltl2tgba -s %f >%N" 'foo bar' 2>stderr -f a
|
|
grep 'ltlcross.*no input.*in.*foo bar' stderr
|
|
|
|
# Make sure non-zero exit codes are reported...
|
|
run 1 ltlcross "$ltl2tgba -s %f >%N" 'false %f >%N' \
|
|
-f a --csv=out.csv 2>stderr
|
|
grep '"exit_status"' out.csv
|
|
grep '"exit_code"' out.csv
|
|
test `grep 'error:.*returned exit code 1' stderr | wc -l` -eq 2
|
|
test `grep '"exit code",1' out.csv | wc -l` -eq 2
|
|
check_csv out.csv
|
|
|
|
# ... unless --omit-missing is supplied.
|
|
run 1 ltlcross "$ltl2tgba -s %f >%N" 'false %f >%N' \
|
|
-f a --csv=out.csv --omit-missing 2>stderr
|
|
grep '"exit_status"' out.csv && exit 1
|
|
grep '"exit_code"' out.csv && exit 1
|
|
test `grep 'error:.*returned exit code 1' stderr | wc -l` -eq 2
|
|
test `grep '"exit code",1' out.csv | wc -l` -eq 0
|
|
check_csv out.csv
|
|
|
|
# Additional columns should not be an issue
|
|
run 1 ltlcross "$ltl2tgba -s %f >%N" 'false %f >%N' \
|
|
-f a --csv=out.csv --strength 2>stderr
|
|
grep '"exit_status"' out.csv
|
|
grep '"exit_code"' out.csv
|
|
grep '"nonacc_scc","terminal_scc","weak_scc","strong_scc"' out.csv
|
|
grep '"terminal_aut","weak_aut","strong_aut"' out.csv
|
|
grep -v '"ambiguous_aut"' out.csv
|
|
test `grep 'error:.*returned exit code 1' stderr | wc -l` -eq 2
|
|
test `grep '"exit code",1' out.csv | wc -l` -eq 2
|
|
check_csv out.csv
|
|
|
|
run 1 ltlcross "$ltl2tgba -s %f >%N" 'false %f >%N' \
|
|
-f a --csv=out.csv --ambiguous 2>stderr
|
|
grep '"exit_status"' out.csv
|
|
grep '"exit_code"' out.csv
|
|
grep '"ambiguous_aut"' out.csv
|
|
grep -v '"terminal_aut"' out.csv
|
|
test `grep 'error:.*returned exit code 1' stderr | wc -l` -eq 2
|
|
test `grep '"exit code",1' out.csv | wc -l` -eq 2
|
|
check_csv out.csv
|
|
|
|
run 1 ltlcross "$ltl2tgba -s %f >%N" 'false %f >%N' \
|
|
-f a --csv=out.csv --ambiguous --strength 2>stderr
|
|
grep '"exit_status"' out.csv
|
|
grep '"exit_code"' out.csv
|
|
grep '"nonacc_scc","terminal_scc","weak_scc","strong_scc"' out.csv
|
|
grep '"terminal_aut","weak_aut","strong_aut"' out.csv
|
|
grep '"ambiguous_aut"' out.csv
|
|
test `grep 'error:.*returned exit code 1' stderr | wc -l` -eq 2
|
|
test `grep '"exit code",1' out.csv | wc -l` -eq 2
|
|
check_csv out.csv
|
|
|
|
# Likewise for timeouts
|
|
echo foo >bug
|
|
run 0 ltlcross 'sleep 5; false %f >%N' 'false %f >%N' \
|
|
--timeout 2 -f a --csv=out.csv \
|
|
--ignore-execution-failures \
|
|
--save-bogus=bug 2>stderr
|
|
grep '"exit_status"' out.csv
|
|
grep '"exit_code"' out.csv
|
|
test `grep 'warning:.*timeout' stderr | wc -l` -eq 2
|
|
test `grep 'warning:.*exit code 1' stderr | wc -l` -eq 2
|
|
test `grep '"timeout",-1' out.csv | wc -l` -eq 2
|
|
test `grep '"exit code",1' out.csv | wc -l` -eq 2
|
|
|
|
grep 'No major problem detected' stderr
|
|
grep '2 timeouts occurred' stderr
|
|
grep '2 non-zero exit statuses were ignored' stderr
|
|
check_csv out.csv
|
|
# 'bug' should exist but be empty
|
|
test -f bug
|
|
test -s bug && exit 1
|
|
|
|
run 0 ltlcross 'sleep 5; false %f >%N' \
|
|
--timeout 2 --omit-missing -f a --csv=out.csv 2>stderr
|
|
grep '"exit_status"' out.csv && exit 1
|
|
grep '"exit_code"' out.csv && exit 1
|
|
test `grep 'warning:.*timeout' stderr | wc -l` -eq 2
|
|
test `wc -l < out.csv` -eq 1
|
|
check_csv out.csv
|
|
|
|
# Check with --products=5 --automata
|
|
run 1 ltlcross "$ltl2tgba -s %f >%N" 'false %f >%N' \
|
|
-f a --csv=out.csv --products=5 --automata 2>stderr
|
|
p=`sed 's/[^,]//g;q' out.csv | wc -c`
|
|
grep '"exit_status"' out.csv
|
|
grep '"exit_code"' out.csv
|
|
test `grep 'error:.*returned exit code 1' stderr | wc -l` -eq 2
|
|
test `grep '"exit code",1' out.csv | wc -l` -eq 2
|
|
test `grep '"HOA:.*--BODY--.*--END--"' out.csv | wc -l` -eq 2
|
|
check_csv out.csv
|
|
|
|
# ... unless --omit-missing is supplied.
|
|
run 1 ltlcross "$ltl2tgba -s %f >%N" 'false %f >%N' \
|
|
-f a --csv=out.csv --omit-missing --products=5 2>stderr
|
|
grep '"exit_status"' out.csv && exit 1
|
|
grep '"exit_code"' out.csv && exit 1
|
|
test `grep 'error:.*returned exit code 1' stderr | wc -l` -eq 2
|
|
test `grep '"exit code",1' out.csv | wc -l` -eq 0
|
|
check_csv out.csv
|
|
|
|
|
|
# Check with --products=+5
|
|
run 1 ltlcross "$ltl2tgba -s %f >%N" 'false %f >%N' \
|
|
-f a --csv=out.csv --products=+5 --automata 2>stderr
|
|
q=`sed 's/[^,]//g;q' out.csv | wc -c`
|
|
grep '"exit_status"' out.csv
|
|
grep '"exit_code"' out.csv
|
|
test `grep 'error:.*returned exit code 1' stderr | wc -l` -eq 2
|
|
test `grep '"exit code",1' out.csv | wc -l` -eq 2
|
|
test `grep '"HOA:.*--BODY--.*--END--"' out.csv | wc -l` -eq 2
|
|
check_csv out.csv
|
|
|
|
# ... unless --omit-missing is supplied.
|
|
run 1 ltlcross "$ltl2tgba -s %f >%N" 'false %f >%N' \
|
|
-f a --csv=out.csv --omit-missing --products=+5 2>stderr
|
|
grep '"exit_status"' out.csv && exit 1
|
|
grep '"exit_code"' out.csv && exit 1
|
|
test `grep 'error:.*returned exit code 1' stderr | wc -l` -eq 2
|
|
test `grep '"exit code",1' out.csv | wc -l` -eq 0
|
|
check_csv out.csv
|
|
|
|
test $q -eq `expr $p + 12`
|
|
|
|
|
|
# Check with Rabin/Streett output
|
|
first="should not be erased"
|
|
echo "$first" > bug.txt
|
|
run 1 ltlcross "$ltl2tgba -s %f >%N" 'false %f >%D' \
|
|
-f 'X a' --csv=out.csv --save-bogus='>>bug.txt' 2>stderr
|
|
q=`sed 's/[^,]//g;q' out.csv | wc -c`
|
|
test $q -eq `expr $p - 1`
|
|
grep '"exit_status"' out.csv
|
|
grep '"exit_code"' out.csv
|
|
test `grep 'error:.*returned exit code 1' stderr | wc -l` -eq 2
|
|
test `grep '"exit code",1' out.csv | wc -l` -eq 2
|
|
check_csv out.csv
|
|
grep 'X a' bug.txt
|
|
test "`head -n 1 bug.txt`" = "$first"
|
|
|
|
|
|
# Support for --ABORT-- in HOA.
|
|
run 1 ltlcross 'echo HOA: --ABORT-- %f > %H' \
|
|
-f a --csv=out.csv 2>stderr
|
|
grep '"exit_status"' out.csv
|
|
grep '"exit_code"' out.csv
|
|
test `grep 'error:.*aborted' stderr | wc -l` -eq 2
|
|
test `grep '"aborted",-1' out.csv | wc -l` -eq 2
|
|
test 3 = `wc -l < out.csv`
|
|
check_csv out.csv
|
|
|
|
# The header of CSV file is not output in append mode
|
|
run 1 ltlcross 'echo HOA: --ABORT-- %f > %H' \
|
|
-f a --csv='>>out.csv' 2>stderr
|
|
grep '"exit_status"' out.csv
|
|
grep '"exit_code"' out.csv
|
|
test `grep 'error:.*aborted' stderr | wc -l` -eq 2
|
|
test `grep '"aborted",-1' out.csv | wc -l` -eq 4
|
|
test 5 = `wc -l < out.csv`
|
|
check_csv out.csv
|
|
|
|
|
|
# Diagnose empty automata, and make sure %% is correctly replaced by %
|
|
run 1 ltlcross ': %f >%O; echo %%>foo' -f a 2>stderr
|
|
test 2 = `grep -c ':.*empty input' stderr`
|
|
cat foo
|
|
cat >expected<<EOF
|
|
%
|
|
EOF
|
|
diff foo expected
|
|
|
|
|
|
# This command used to crash. Report from František Blahoudek.
|
|
run 0 ltlcross --verbose --no-checks -f 'FGa' 'ltl2tgba'
|