test the SPOT_BDD_TRACE envvar
* tests/core/bdd.test: New file. * tests/Makefile.am: Add it.
This commit is contained in:
parent
0bbcb7f35d
commit
161bb0675f
2 changed files with 30 additions and 0 deletions
|
|
@ -196,6 +196,7 @@ TESTS_kripke = \
|
||||||
core/kripke.test
|
core/kripke.test
|
||||||
|
|
||||||
TESTS_misc = \
|
TESTS_misc = \
|
||||||
|
core/bdd.test \
|
||||||
core/bitvect.test \
|
core/bitvect.test \
|
||||||
core/intvcomp.test \
|
core/intvcomp.test \
|
||||||
core/minusx.test \
|
core/minusx.test \
|
||||||
|
|
|
||||||
29
tests/core/bdd.test
Executable file
29
tests/core/bdd.test
Executable file
|
|
@ -0,0 +1,29 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Copyright (C) 2017 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
|
||||||
|
|
||||||
|
# Make sure that setting the SPOT_BDD_TRACE envvar actually does
|
||||||
|
# something.
|
||||||
|
SPOT_BDD_TRACE=1 ltl2tgba a >out 2>err
|
||||||
|
grep spot: out && exit 1
|
||||||
|
grep 'spot: BDD package initialized' err
|
||||||
|
grep 'spot: BDD stats:' err
|
||||||
Loading…
Add table
Add a link
Reference in a new issue