From: Jim Meyering Date: Sun, 2 Oct 2016 19:51:57 +0000 (-0700) Subject: maint: avoid unwarranted "make syntax-check" failure X-Git-Tag: v1.9~44 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=684cc5eb56437028da0171b53053f60ccda85f9f;p=debian%2Fgzip maint: avoid unwarranted "make syntax-check" failure * tests/timestamp: Reorder "rm" arguments so the doubled-word syntax-check rule does not detect a false positive "in in" here. --- diff --git a/tests/timestamp b/tests/timestamp index c488760..7acfe5d 100755 --- a/tests/timestamp +++ b/tests/timestamp @@ -29,7 +29,7 @@ for time in 190101010000 196912312359.59 197001010000 210602070628.16; do gzip in test $? = 2 || fail=1 fi - rm -f in in.gz + rm -f in.gz in done # Test that time stamps in range for gzip do not generate warnings. @@ -37,7 +37,7 @@ for time in 197001010000.01 203801190314.07 203801190314.08 210602070628.15; do if touch -t $time in; then gzip in || fail=1 fi - rm -f in in.gz + rm -f in.gz in done # On platforms that fail to support time stamps within gzip's range,