diff options
author | Nikias Bassen | 2014-02-13 12:14:31 +0100 |
---|---|---|
committer | Nikias Bassen | 2014-02-13 12:14:31 +0100 |
commit | 8867ee930606a2d9126b742b1c5ad7a8fa425190 (patch) | |
tree | cd68fba84007c810a184e48360ddb78a2f2ed389 /test/medium.test | |
parent | 497a5980d837e212f2444688dce72c6080762280 (diff) | |
download | libplist-8867ee930606a2d9126b742b1c5ad7a8fa425190.tar.gz libplist-8867ee930606a2d9126b742b1c5ad7a8fa425190.tar.bz2 |
fix make distcheck
Diffstat (limited to 'test/medium.test')
-rwxr-xr-x | test/medium.test | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/test/medium.test b/test/medium.test index 231bb80..6740599 100755 --- a/test/medium.test +++ b/test/medium.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=3.plist -$srcdir/plist_test $srcdir/data/3.plist +if ! test -d "$DATAOUT"; then + mkdir -p $DATAOUT +fi +$top_builddir/test/plist_test $DATASRC/$TESTFILE $DATAOUT/$TESTFILE.out |