spot/iface/gspn/simple.test
Alexandre Duret-Lutz 5b245d7dd1 * configure.ac, NEWS: Bump version to 0.0f.
* 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.
2003-08-01 10:25:56 +00:00

24 lines
432 B
Bash
Executable file

#! /bin/sh
. ./defs || exit 1
set -e
cp -R $srcdir/examples/simple .
chmod +w simple
# Unknown properties should be flagged.
../dottygspn-rg simple/simple unknown && exit 1
../dottygspn-rg simple/simple obs >output
# We expect exactly 1024 states.
grep ' 1024 ' output
grep ' 1025 ' output && exit 1
../dottygspn-srg simple/simple obs >output
# We expect exactly 11 states.
grep ' 11 ' output
grep ' 12 ' output && exit 1
: