correct date testsuite to use compatible format
authorDenys Vlasenko <vda.linux@googlemail.com>
Sat, 18 Jul 2009 02:54:21 +0000 (04:54 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sat, 18 Jul 2009 02:54:21 +0000 (04:54 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
testsuite/date/date-works
testsuite/date/date-works-1

index 0802e88..901c485 100644 (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"
index e318944..bd984c0 100644 (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"