From 684cc5eb56437028da0171b53053f60ccda85f9f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 2 Oct 2016 12:51:57 -0700 Subject: [PATCH] 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. --- tests/timestamp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, -- 2.47.2