diff options
author | Jim Meyering <jim@meyering.net> | 2004-01-20 09:19:37 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-01-20 09:19:37 +0000 |
commit | bf05ef79f354595f537c1cbff0a18ba7653c1eeb (patch) | |
tree | e7812dab9dc0514fb4c2c6360fc405254c53e603 /tests/touch/relative | |
parent | 61c6a9697fcea7be299488a3e90bf77dd60873be (diff) | |
download | coreutils-bf05ef79f354595f537c1cbff0a18ba7653c1eeb.tar.xz |
Use TZ=UTC0, not TZ=utc (which isn't portable).
Problem reported by Christian Krackowizer. Also, use
+0000 rather than +0 to specify a time zone, as the documentation
requires four digits.
Diffstat (limited to 'tests/touch/relative')
-rwxr-xr-x | tests/touch/relative | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/touch/relative b/tests/touch/relative index 9d28303fb..806f4b7c5 100755 --- a/tests/touch/relative +++ b/tests/touch/relative @@ -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 |