diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2022-10-27 15:27:50 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-10-27 15:27:50 +0300 |
commit | 798c86e4231e0835ab76ccd0810c8ea30833b2ce (patch) | |
tree | bf140e5dde77f4f9780eb01fd9641a8458e4d6e7 /tests | |
parent | Tests: Keep test_compress_* working when some filters are unavailable. (diff) | |
download | xz-798c86e4231e0835ab76ccd0810c8ea30833b2ce.tar.xz |
Tests: test_files.sh: Print the reason for skipping if xz & xzdec missing.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_files.sh | 1 |
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 |