diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2011-08-06 20:37:28 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2011-09-05 16:05:44 +0300 |
commit | f138bdf76a70029e8360062a0b227936b83b24c9 (patch) | |
tree | 6443ad2afcb5333739b77f7109e364b578eb17cf /tests/test_scripts.sh | |
parent | Fix exit status of "xzdiff foo.xz bar.xz". (diff) | |
download | xz-f138bdf76a70029e8360062a0b227936b83b24c9.tar.xz |
Run the scripts with the correct shell in test_scripts.sh.
The scripts are now made executable in the build tree.
This way the scripts can be run like programs in
test_scripts.sh. Previously test_scripts.sh always
used sh but it's not correct if @POSIX_SHELL@ is set
to something else by configure.
Thanks to Jonathan Nieder for the patch.
Diffstat (limited to '')
-rwxr-xr-x | tests/test_scripts.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_scripts.sh b/tests/test_scripts.sh index 891fc76a..293929e6 100755 --- a/tests/test_scripts.sh +++ b/tests/test_scripts.sh @@ -13,7 +13,7 @@ XZ=../src/xz/xz XZDIFF=../src/scripts/xzdiff test -x "$XZ" || XZ= -test -r "$XZDIFF" || XZDIFF= +test -x "$XZDIFF" || XZDIFF= if test -z "$XZ" || test -z "$XZDIFF"; then (exit 77) exit 77 @@ -26,7 +26,7 @@ preimage=$srcdir/files/good-1-check-crc32.xz samepostimage=$srcdir/files/good-1-check-crc64.xz otherpostimage=$srcdir/files/good-1-lzma2-1.xz -sh "$XZDIFF" "$preimage" "$samepostimage" >/dev/null +"$XZDIFF" "$preimage" "$samepostimage" >/dev/null status=$? if test "$status" != 0 ; then echo "xzdiff with no changes exited with status $status != 0" @@ -34,7 +34,7 @@ if test "$status" != 0 ; then exit 1 fi -sh "$XZDIFF" "$preimage" "$otherpostimage" >/dev/null +"$XZDIFF" "$preimage" "$otherpostimage" >/dev/null status=$? if test "$status" != 1 ; then echo "xzdiff with changes exited with status $status != 1" @@ -42,7 +42,7 @@ if test "$status" != 1 ; then exit 1 fi -sh "$XZDIFF" "$preimage" "$srcdir/files/missing.xz" >/dev/null 2>&1 +"$XZDIFF" "$preimage" "$srcdir/files/missing.xz" >/dev/null 2>&1 status=$? if test "$status" != 2 ; then echo "xzdiff with missing operand exited with status $status != 2" |