* iface/gspn/simple.test, iface/gspn/dcswave.test, iface/gspn/dcswaveltl.test: Make sure the example directory is writable. * m4/lbtt.m4, m4/buddy.m4: Always configure buddy/ and lbtt/, regardless of the --with-included-buddy and --with-included-lbtt settings.
15 lines
344 B
Bash
Executable file
15 lines
344 B
Bash
Executable file
#! /bin/sh
|
|
|
|
. ./defs || exit 1
|
|
|
|
set -e
|
|
|
|
cp -R $srcdir/examples/DCSwave .
|
|
chmod +w DCSwave
|
|
|
|
# G(ATTiIDLj => F(!SCj U SCi)) is true
|
|
../ltlgspn-srg DCSwave/DCSWave '!G(ATTiIDLj => F(!SCj U SCi))' ATTiIDLj SCi SCj > output
|
|
|
|
# G(F(!SCj U SCi)) is false
|
|
../ltlgspn-srg DCSwave/DCSWave '!G(F(!SCj U SCi))' ATTiIDLj SCi SCj > output \
|
|
|| test $? = 1
|