maint: update all copyright year number ranges
[debian/gzip] / tests / trailing-nul
index 63bae481b01a9b0002d057ae42eb9b187cfae112..93b12de89cada86e63f2f1affe3f18da84292a1b 100755 (executable)
@@ -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-2013 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,8 +18,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 # limit so don't run it by default.
 
-: ${srcdir=.}
-. "$srcdir/init.sh"; path_prepend_ ..
+. "${srcdir=.}/init.sh"; path_prepend_ ..
 
 (echo 0 | gzip; printf '\0') > 0.gz || framework_failure_
 (echo 00 | gzip; printf '\0\0') > 00.gz || framework_failure_
@@ -32,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