* src/sanity/style.test: Test for the missing header. * iface/ltsmin/check.test, src/kripketest/kripke.test, src/kripketest/parse_print_test.cc, src/ltlparse/fmterror.cc, src/ltltest/consterm.test, src/ltltest/kind.test, src/ltltest/length.test, src/ltltest/ltlfilt.test, src/ltltest/reduc.cc, src/ltltest/reduc.test, src/ltltest/reduc0.test, src/ltltest/reducpsl.test, src/ltltest/remove_x.test, src/ltltest/unabbrevwm.test, src/ltltest/utf8.test, src/ltltest/uwrm.test, src/ltlvisit/dump.cc, src/ltlvisit/remove_x.cc, src/misc/casts.hh, src/misc/fixpool.hh, src/misc/hashfunc.hh, src/misc/ltstr.hh, src/sanity/readme.test, src/taalgos/tgba2ta.cc, src/tgbaalgos/bfssteps.cc, src/tgbaalgos/stats.cc, src/tgbatest/acc.test, src/tgbatest/bitvect.test, src/tgbatest/complementation.test, src/tgbatest/cycles.test, src/tgbatest/degendet.test, src/tgbatest/dfs.test, src/tgbatest/dupexp.test, src/tgbatest/emptchkr.test, src/tgbatest/intvcomp.test, src/tgbatest/ltl2ta.test, src/tgbatest/ltl2ta2.test, src/tgbatest/ltlprod.test, src/tgbatest/maskacc.test, src/tgbatest/obligation.test, src/tgbatest/randpsl.test, src/tgbatest/readsat.cc, src/tgbatest/readsat.test, src/tgbatest/scc.test, src/tgbatest/sccsimpl.test, src/tgbatest/taatgba.test, src/tgbatest/tgbaread.test, src/tgbatest/tripprod.test, src/tgbatest/uniq.test, src/tgbatest/wdba.test: Add it.
64 lines
1.3 KiB
Bash
Executable file
64 lines
1.3 KiB
Bash
Executable file
#!/bin/sh
|
|
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2014, 2015 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
|
|
|
|
cat >expect <<EOF
|
|
#2: {0,2}
|
|
#2: {0,3}
|
|
#2: {1,2}
|
|
#3: {0,2,3}
|
|
#1: {0}
|
|
#4: {0,1,2,3} accepting
|
|
#2: {0,2}
|
|
#2: {0,3}
|
|
#2: {1,2}
|
|
#3: {0,2,3}
|
|
#1: {0}
|
|
#4: {0,1,2,3}
|
|
#0: empty
|
|
#5: {0,1,2,3,4} accepting
|
|
#2: {1,2}
|
|
5 + 5 = 10
|
|
#4: {0,3,6,7}
|
|
#7: {0,1,2,3,4,6,7}
|
|
#10: {0,1,2,3,4,5,6,7,8,9} accepting
|
|
0,1,2,3,4,5,6,7,8,9
|
|
#0: empty accepting
|
|
#0: empty accepting
|
|
#1: {3}
|
|
#4: {0,1,2,3}
|
|
#2: {0,2}
|
|
stripping
|
|
#2: {0,2}
|
|
#0: empty
|
|
#2: {0,3}
|
|
#1: {1}
|
|
#2: {1,2}
|
|
#1: {0}
|
|
#1: {4}
|
|
#1: {2}
|
|
EOF
|
|
|
|
run 0 ../acc | tee stdout
|
|
diff stdout expect
|