aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-03-13 22:06:38 -0700
committerRob Landley <rob@landley.net>2019-03-14 10:28:22 -0500
commit021954d8425d77d38f0b0989319aec09efc92aa6 (patch)
tree7252c97fcb079780a346db8d5779e107aa1daab0 /tests
parent3526680910b318d2c36a326e9ef77fb3e2787f7e (diff)
downloadtoybox-021954d8425d77d38f0b0989319aec09efc92aa6.tar.gz
date: don't hard-code 2019 in the test.
I'm not worried about hard-coding the *century* in the other test. We'll be long dead before that's an issue, and it's easier to read this way.
Diffstat (limited to 'tests')
-rw-r--r--tests/date.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/date.test b/tests/date.test
index 285d3dec..a317d35b 100644
--- a/tests/date.test
+++ b/tests/date.test
@@ -16,7 +16,7 @@ testing "-d @0x123 invalid" "TZ=$tz date -d @0x123 2>/dev/null || echo expected
# All SKIP_HOST=1 because coreutils rejects POSIX format dates supplied to -d.
# These expected values are from running on the host without -d (not as root!).
SKIP_HOST=1 testing "-d MMDDhhmm" \
- "TZ=$tz date -d 06021234 2>&1" "Sun Jun 2 12:34:00 CEST 2019\n" "" ""
+ "TZ=$tz date -d 06021234 2>&1" "Sun Jun 2 12:34:00 CEST $(date +%Y)\n" "" ""
SKIP_HOST=1 testing "-d MMDDhhmmYY.SS" \
"TZ=$tz date -d 1110143115.30 2>&1" "Tue Nov 10 14:31:30 CET 2015\n" "" ""
# busybox thinks this is the year 603 (ISO time 0602-12-34 19:82 with out of range fields normalized).