iface/gspn/dcswaveltl.test, iface/gspn/dcswaveeltl.test, iface/gspn/dcswavefm.test: Do not accept $? = 0 when a failure is expected.
13 lines
347 B
Bash
Executable file
13 lines
347 B
Bash
Executable file
#! /bin/sh
|
|
|
|
. ./defs || exit 1
|
|
|
|
cp -R $srcdir/examples/DCSwave .
|
|
chmod +w DCSwave
|
|
|
|
# G(ATTiIDLj => F(!SCj U SCi)) is true
|
|
../fmgspn-srg DCSwave/DCSWave '!G(ATTiIDLj => F(!SCj U SCi))' ATTiIDLj SCi SCj > output || exit 1
|
|
|
|
# G(F(!SCj U SCi)) is false
|
|
../fmgspn-srg DCSwave/DCSWave '!G(F(!SCj U SCi))' ATTiIDLj SCi SCj > output
|
|
test $? = 1 || exit 1
|