1
0
Fork 0

Adding upstream version 0.3.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-24 04:44:01 +01:00
parent 90aec685c7
commit 527d6bc346
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
11 changed files with 181 additions and 270 deletions

View file

@ -45,11 +45,24 @@ for i in ${extensions}; do
echo -n .
done
"${ZCAT}" in > copy || fail=1
cmp in copy || fail=1
echo -n .
"${ZCAT}" in in.gz in.bz2 in.lz -- -in- > copy5 || fail=1
cmp in5 copy5 || fail=1
echo -n .
for i in ${extensions}; do
"${ZDIFF}" --cmp in.$i || fail=1
echo -n .
"${ZDIFF}" --cmp in in.$i || fail=1
echo -n .
"${ZDIFF}" --cmp in.$i in || fail=1
echo -n .
done
for i in ${extensions}; do
"${ZDIFF}" in.$i || fail=1
echo -n .
@ -81,27 +94,23 @@ echo -n .
echo -n .
for i in ${extensions}; do
"${ZDIFF}" --cmp in.$i || fail=1
echo -n .
"${ZDIFF}" --cmp in in.$i || fail=1
echo -n .
"${ZDIFF}" --cmp in.$i in || fail=1
echo -n .
done
for i in ${extensions}; do
"${ZGREP}" License in.$i 2>&1 > /dev/null || fail=1
echo -n .
done
"${ZGREP}" License in 2>&1 > /dev/null || fail=1
echo -n .
"${ZGREP}" License -- -in- 2>&1 > /dev/null || fail=1
echo -n .
"${ZGREP}" License -- -in-.lz 2>&1 > /dev/null || fail=1
echo -n .
"${ZGREP}" License in in.gz in.bz2 in.lz -- -in- 2>&1 > /dev/null || fail=1
echo -n .
echo
if test ${fail} = 0; then
if [ ${fail} = 0 ]; then
echo "tests completed successfully."
cd "${objdir}" && rm -r tmp
else