* src/sanity/80columns.test: Check the iface/ tree too.

* iface/gspn/dcswaveltl.test, iface/gspn/dcswavefm.test,
iface/gspn/dcswaveeltl.test, iface/gspn/udcsltl.test,
iface/gspn/udcseltl.test, iface/gspn/udcsfm.test,
iface/gspn/udcsefm.test: Wrap to fit 80 columns.
This commit is contained in:
Alexandre Duret-Lutz 2004-05-21 11:46:22 +00:00
parent 9329ea177d
commit da2d2e19b1
9 changed files with 97 additions and 53 deletions

View file

@ -2,12 +2,17 @@
. ./defs || exit 1
set -e
cp -R $srcdir/examples/DCSwave .
chmod +w DCSwave
# G(ATTiIDLj => F(!SCj U SCi)) is true
../ltlgspn-srg -c -f -m DCSwave/DCSWave '!G(ATTiIDLj => F(!SCj U SCi))' ATTiIDLj SCi SCj > output || exit 1
../ltlgspn-srg -c -f -m DCSwave/DCSWave \
'!G(ATTiIDLj => F(!SCj U SCi))' ATTiIDLj SCi SCj >output
# G(F(!SCj U SCi)) is false
../ltlgspn-srg -c -f -m DCSwave/DCSWave '!G(F(!SCj U SCi))' ATTiIDLj SCi SCj > output
test $? = 1 || exit 1
../ltlgspn-srg -c -f -m DCSwave/DCSWave \
'!G(F(!SCj U SCi))' ATTiIDLj SCi SCj >output && exit 1
: