]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Use TZ=UTC0, not TZ=utc (which isn't portable).
authorJim Meyering <jim@meyering.net>
Tue, 20 Jan 2004 09:19:37 +0000 (09:19 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 20 Jan 2004 09:19:37 +0000 (09:19 +0000)
Problem reported by Christian Krackowizer.  Also, use
+0000 rather than +0 to specify a time zone, as the documentation
requires four digits.

tests/touch/relative

index 9d28303fbe2c32bc9d7a86b4fc347e74ceec6193..806f4b7c5867e9fcbc8ab037730c06c2933cfd94 100755 (executable)
@@ -17,7 +17,7 @@ trap '(exit $?); exit $?' 1 2 13 15
 framework_failure=0
 mkdir -p $tmp || framework_failure=1
 cd $tmp || framework_failure=1
-touch --date='2004-01-16 05:26:38 +0' f || framework_failure=1
+touch --date='2004-01-16 05:26:38 +0000' f || framework_failure=1
 
 if test $framework_failure = 1; then
   echo "$0: failure in testing framework" 1>&2