Tests: test_files.sh: Print the reason for skipping if xz & xzdec missing.

This commit is contained in:
Lasse Collin 2022-10-27 15:27:50 +03:00
parent c1dd8524e1
commit 798c86e423
1 changed files with 1 additions and 0 deletions

View File

@ -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