1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-19 22:02:21 +02:00

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.
This commit is contained in:
Jim Meyering
2004-01-20 09:19:37 +00:00
parent 61c6a9697f
commit bf05ef79f3

View File

@@ -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