date: fix date-works test, add date-works-1 one (currently fails)

This commit is contained in:
Denis Vlasenko
2008-04-27 20:58:43 +00:00
parent 7dff4333d6
commit 4809a9f78e
2 changed files with 138 additions and 10 deletions

View File

@@ -4,20 +4,20 @@ dt=`echo "$dt" | sed 's/^[^ ][^ ][^ ] [^ ][^ ][^ ] [ 0123][0-9] [012][0-9]:[0-5]
test x"$dt" = x"OK"
dt=`busybox date -d 1:2`
dt=`echo "$dt" | cut -b1-19`
test x"$dt" = x"Fri Apr 25 01:02:00"
dt=`echo "$dt" | cut -b12-19`
test x"$dt" = x"01:02:00"
dt=`busybox date -d 1:2:3`
dt=`echo "$dt" | cut -b1-19`
test x"$dt" = x"Fri Apr 25 01:02:03"
dt=`echo "$dt" | cut -b12-19`
test x"$dt" = x"01:02:03"
dt=`busybox date -d 1.2-3:4`
dt=`echo "$dt" | cut -b1-19`
test x"$dt" = x"Wed Jan 2 03:04:00"
dt=`echo "$dt" | cut -b5-19`
test x"$dt" = x"Jan 2 03:04:00"
dt=`busybox date -d 1.2-3:4:5`
dt=`echo "$dt" | cut -b1-19`
test x"$dt" = x"Wed Jan 2 03:04:05"
dt=`echo "$dt" | cut -b5-19`
test x"$dt" = x"Jan 2 03:04:05"
dt=`busybox date -d 1999.1.2-3:4`
dt=`echo "$dt" | cut -b1-19`
@@ -32,8 +32,8 @@ dt=`echo "$dt" | cut -b1-19`
test x"$dt" = x"Sat Jan 2 03:04:05"
dt=`busybox date -d 01231133`
dt=`echo "$dt" | cut -b1-19`
test x"$dt" = x"Wed Jan 23 11:33:00"
dt=`echo "$dt" | cut -b5-19`
test x"$dt" = x"Jan 23 11:33:00"
dt=`busybox date -d 012311332000`
dt=`echo "$dt" | cut -b1-19`