aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2022-10-27 15:27:50 +0300
committerLasse Collin <lasse.collin@tukaani.org>2022-10-27 15:27:50 +0300
commit798c86e4231e0835ab76ccd0810c8ea30833b2ce (patch)
treebf140e5dde77f4f9780eb01fd9641a8458e4d6e7
parentTests: Keep test_compress_* working when some filters are unavailable. (diff)
downloadxz-798c86e4231e0835ab76ccd0810c8ea30833b2ce.tar.xz
Tests: test_files.sh: Print the reason for skipping if xz & xzdec missing.
-rwxr-xr-xtests/test_files.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_files.sh b/tests/test_files.sh
index 2ea9328b..b550b757 100755
--- a/tests/test_files.sh
+++ b/tests/test_files.sh
@@ -15,6 +15,7 @@ XZDEC=../src/xzdec/xzdec
test -x "$XZ" || XZ=
test -x "$XZDEC" || XZDEC=
if test -z "$XZ$XZDEC"; then
+ echo "xz and xzdec were not built, skipping this test."
exit 77
fi