diff options
author | Denys Vlasenko | 2013-12-31 18:57:39 +0100 |
---|---|---|
committer | Denys Vlasenko | 2013-12-31 18:57:39 +0100 |
commit | 61be8e46a80749fe5bb16bc8f831c689d21a4e34 (patch) | |
tree | 657cb8eff1749f2683e32bcc4cf2a5e0a1fbd50a /testsuite/date/date-works | |
parent | e83e1c50f20f01fbb10cf65532a966f7f63a6b6d (diff) | |
download | busybox-61be8e46a80749fe5bb16bc8f831c689d21a4e34.zip busybox-61be8e46a80749fe5bb16bc8f831c689d21a4e34.tar.gz |
testsuite: disable tests for no longer supported bbox-specific date formats
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/date/date-works')
-rw-r--r-- | testsuite/date/date-works | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/testsuite/date/date-works b/testsuite/date/date-works index 901c485..35c2468 100644 --- a/testsuite/date/date-works +++ b/testsuite/date/date-works @@ -31,9 +31,11 @@ dt=`busybox date -d '1999-1-2 3:4:5'` 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 -b5-19` -test x"$dt" = x"Jan 23 11:33:00" +# date (GNU coreutils) 8.17 doesn't accept 01231133 either: +# date: invalid date '01231133' +#dt=`busybox date -d 01231133` +#dt=`echo "$dt" | cut -b5-19` +#test x"$dt" = x"Jan 23 11:33:00" dt=`busybox date -d 200001231133` dt=`echo "$dt" | cut -b1-19` |