X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=tests%2Ftrailing-nul;h=1c2998e365872cbbe1ce845cf7f296811084f92b;hb=92249085071a973e2c0621b0415b93d2e48bb00d;hp=08b6c02fea8d63744d7dfcdfd80deb01cae3d958;hpb=c7e61475680fa226bd9b8bdd469cd66914e630f5;p=debian%2Fgzip diff --git a/tests/trailing-nul b/tests/trailing-nul index 08b6c02..1c2998e 100755 --- a/tests/trailing-nul +++ b/tests/trailing-nul @@ -2,7 +2,7 @@ # gzip accepts trailing NUL bytes; don't fail if there is exactly one. # Before gzip-1.4, this would fail. -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009-2018 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -15,19 +15,14 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # limit so don't run it by default. -if test "$VERBOSE" = yes; then - set -x - gzip --version -fi +. "${srcdir=.}/init.sh"; path_prepend_ .. -. $srcdir/tests/test-lib.sh - -(echo 0 | gzip; printf '\0') > 0.gz || framework_failure -(echo 00 | gzip; printf '\0\0') > 00.gz || framework_failure -(echo 1 | gzip; printf '\1') > 1.gz || framework_failure +(echo 0 | gzip; printf '\0') > 0.gz || framework_failure_ +(echo 00 | gzip; printf '\0\0') > 00.gz || framework_failure_ +(echo 1 | gzip; printf '\1') > 1.gz || framework_failure_ fail=0 @@ -36,7 +31,7 @@ for i in 0 00 1; do test $ret -eq $i || fail=1 test $ret = 1 && continue echo $i > exp || fail=1 - compare $i exp || fail=1 + compare exp $i || fail=1 done Exit $fail