fix spurious test-case failure when Python is not installed
Fixes #530. * tests/core/ltlsynt2.test: Skip when PYTHON is empty. * NEWS: Mention the fix.
This commit is contained in:
parent
1a0b1f235d
commit
646b6e546f
2 changed files with 7 additions and 2 deletions
5
NEWS
5
NEWS
|
|
@ -1,6 +1,9 @@
|
|||
New in spot 2.11.4.dev (not yet released)
|
||||
|
||||
Nothing yet.
|
||||
Bug fixes:
|
||||
|
||||
- Fix spurious failure of ltlsynt2.test when Python is not installed
|
||||
(issue #530).
|
||||
|
||||
New in spot 2.11.4 (2023-02-10)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright (C) 2022 Laboratoire de Recherche et Développement de
|
||||
# Copyright (C) 2022, 2023 Laboratoire de Recherche et Développement de
|
||||
# l'Epita (LRDE).
|
||||
#
|
||||
# This file is part of Spot, a model checking library.
|
||||
|
|
@ -36,6 +36,8 @@ ltlsynt --ins=i1,i2 -F formulas.ltl -f 'o1 & F(i1 <-> o2)' -q --csv=out.csv &&\
|
|||
exit 2
|
||||
test $? -eq 1 || exit 2
|
||||
|
||||
test -z "$PYTHON" && exit 77
|
||||
|
||||
cat >test.py <<EOF
|
||||
import sys
|
||||
try:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue