1 rizwank 1.1 #!/bin/sh
2 #
3 # Definitions for States testing environment.
4 #
5
6 states="../states -f $srcdir/tests.st"
7
8 # Check that $srcdir is set correctly.
9 test -f $srcdir/defs || {
10 echo "defs: installation error" 1>&2
11 exit 1
12 }
13
|