diff options
Diffstat (limited to 'test/bigarray.test')
-rwxr-xr-x | test/bigarray.test | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/test/bigarray.test b/test/bigarray.test index fa27e69..27f8098 100755 --- a/test/bigarray.test +++ b/test/bigarray.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=6.plist -$srcdir/plist_test $srcdir/data/6.plist +if ! test -d "$DATAOUT"; then + mkdir -p $DATAOUT +fi +$top_builddir/test/plist_test $DATASRC/$TESTFILE $DATAOUT/$TESTFILE.out |