From 4e47773f0570bdffefd062b85265242f9f13ef96 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 7 Nov 2015 17:11:02 +0100 Subject: Adding upstream version 0.4. Signed-off-by: Daniel Baumann --- testsuite/check.sh | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) (limited to 'testsuite') diff --git a/testsuite/check.sh b/testsuite/check.sh index dbbf076..7af54ac 100755 --- a/testsuite/check.sh +++ b/testsuite/check.sh @@ -10,8 +10,12 @@ export LC_ALL objdir=`pwd` testdir=`cd "$1" ; pwd` ZCAT="${objdir}"/zcat +ZCMP="${objdir}"/zcmp ZDIFF="${objdir}"/zdiff ZGREP="${objdir}"/zgrep +ZEGREP="${objdir}"/zegrep +ZFGREP="${objdir}"/zfgrep +ZUTILS="${objdir}"/zutils compressors="gzip bzip2 lzip" extensions="gz bz2 lz" framework_failure() { echo 'failure in testing framework'; exit 1; } @@ -54,11 +58,11 @@ echo -n . for i in ${extensions}; do - "${ZDIFF}" --cmp in.$i || fail=1 + "${ZCMP}" in.$i || fail=1 echo -n . - "${ZDIFF}" --cmp in in.$i || fail=1 + "${ZCMP}" in in.$i || fail=1 echo -n . - "${ZDIFF}" --cmp in.$i in || fail=1 + "${ZCMP}" in.$i in || fail=1 echo -n . done @@ -107,6 +111,17 @@ echo -n . echo -n . "${ZGREP}" License in in.gz in.bz2 in.lz -- -in- 2>&1 > /dev/null || fail=1 echo -n . +"${ZEGREP}" License in 2>&1 > /dev/null || fail=1 +echo -n . +"${ZFGREP}" License in 2>&1 > /dev/null || fail=1 +echo -n . + +if [ "gzip" != `"${ZUTILS}" -t in.gz` ]; then fail=1 ; fi +echo -n . +if [ "bzip2" != `"${ZUTILS}" -t in.bz2` ]; then fail=1 ; fi +echo -n . +if [ "lzip" != `"${ZUTILS}" -t in.lz` ]; then fail=1 ; fi +echo -n . echo -- cgit v1.2.3