diff options
Diffstat (limited to 'test/small.test')
-rwxr-xr-x | test/small.test | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/test/small.test b/test/small.test index 544f374..d84782a 100755 --- a/test/small.test +++ b/test/small.test @@ -1,12 +1,11 @@ ## -*- sh -*- -# Common definitions -if test -z "$srcdir"; then - srcdir=echo "$0" | sed 's,[^/]*$,,' - test "$srcdir" = "$0" && srcdir=. - test -z "$srcdir" && srcdir=. - test "${VERBOSE+set}" != set && VERBOSE=1 -fi +DATASRC=$top_srcdir/test/data +DATAOUT=$top_builddir/test/data +TESTFILE=2.plist -$srcdir/plist_test $srcdir/data/2.plist +if ! test -d "$DATAOUT"; then + mkdir -p $DATAOUT +fi +$top_builddir/test/plist_test $DATASRC/$TESTFILE $DATAOUT/$TESTFILE.out |