Allow lbtt not to be built, and skip relevant tests.
* m4/lbtt.m4: Turn the missing lbtt error into a warning, and do not configure lbtt wen --without-included-lbtt is specified. * bench/ltl2tgba/defs.in: Abort if lbtt is missing. * src/tgbatest/defs.in (need_lbtt): New function to skip tests that require lbtt. * src/tgbatest/babiak.test, src/tgbatest/ltl2neverclaim.test, src/tgbatest/spotlbtt.test: Call need_lbtt.
This commit is contained in:
parent
b5b3cd9d0c
commit
b23296cf61
6 changed files with 42 additions and 23 deletions
|
|
@ -1,6 +1,6 @@
|
|||
# -*- shell-script; coding: utf-8 -*-
|
||||
# Copyright (C) 2012 Laboratoire de Recherche et Développement de
|
||||
# l'Epita (LRDE).
|
||||
# -*- mode: shell-script; coding: utf-8 -*-
|
||||
# Copyright (C) 2012 Laboratoire de Recherche et Développement
|
||||
# de l'Epita (LRDE).
|
||||
# Copyright (C) 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||
# département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||
# et Marie Curie.
|
||||
|
|
@ -48,6 +48,11 @@ MODELLA="@MODELLA@"
|
|||
SPIN="@SPIN@"
|
||||
WRING2LBTT="@WRING2LBTT@"
|
||||
|
||||
($LBTT --version) >/dev/null 2>&1 || {
|
||||
echo "$LBTT not available. Try configuring with --with-included-lbtt."
|
||||
exit 77
|
||||
}
|
||||
|
||||
for var in LBT LTL2BA LTL3BA LTL2NBA MODELLA SPIN WRING2LBTT
|
||||
do
|
||||
if eval 'test -z "$'$var'"'; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue