X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=tests%2Ftrailing-nul;h=1c2998e365872cbbe1ce845cf7f296811084f92b;hb=659cae49714b93487242525dfa0e5737463d78d8;hp=83805dffbb01d2384e0383ed41fd46fc1a020a67;hpb=dc0ab95dbae38577efebe2283fc9b76e92ef4233;p=debian%2Fgzip diff --git a/tests/trailing-nul b/tests/trailing-nul index 83805df..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-2010 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,20 +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=.} -. "$srcdir/tests/init.sh"; path_prepend_ . - -(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 @@ -37,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