correct date testsuite to use compatible format

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2009-07-18 04:54:21 +02:00
parent 38dd8aa657
commit 941990f0c5
2 changed files with 4 additions and 4 deletions

View File

@ -35,10 +35,10 @@ dt=`busybox date -d 01231133`
dt=`echo "$dt" | cut -b5-19`
test x"$dt" = x"Jan 23 11:33:00"
dt=`busybox date -d 012311332000`
dt=`busybox date -d 200001231133`
dt=`echo "$dt" | cut -b1-19`
test x"$dt" = x"Sun Jan 23 11:33:00"
dt=`busybox date -d 012311332000.30`
dt=`busybox date -d 200001231133.30`
dt=`echo "$dt" | cut -b1-19`
test x"$dt" = x"Sun Jan 23 11:33:30"

View File

@ -42,12 +42,12 @@ test x"$dt" = x"Jan 23 11:33:00"
# date (GNU coreutils) 6.10 reports:
# date: invalid date '012311332000'
dt=`busybox date -d 012311332000 +%c`
dt=`busybox date -d 200001231133 +%c`
test x"$dt" = x"Sun Jan 23 11:33:00 2000"
# date (GNU coreutils) 6.10 reports:
# date: invalid date '012311332000'
dt=`busybox date -d 012311332000.30 +%c`
dt=`busybox date -d 200001231133.30 +%c`
test x"$dt" = x"Sun Jan 23 11:33:30 2000"
lcbbd="LC_ALL=C busybox date"