X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=tests%2Ftrailing-nul;fp=tests%2Ftrailing-nul;h=536ffebb81907d3f037130e18f7273f9894e4b10;hb=dc84183747ce1703eb99685b5dbde1f65a143c06;hp=83805dffbb01d2384e0383ed41fd46fc1a020a67;hpb=a2016c1de6e4884f6c8ed5cc498f3bf821c25ca4;p=debian%2Fgzip diff --git a/tests/trailing-nul b/tests/trailing-nul index 83805df..536ffeb 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-2012 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 @@ -18,17 +18,11 @@ # 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