summaryrefslogtreecommitdiff
path: root/tests/misc
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2007-11-22 22:44:51 +0100
committerJim Meyering <meyering@redhat.com>2007-11-23 08:27:16 +0100
commit0e9b06482efea407a7a90630c9e62d9bec5e94f4 (patch)
tree9522a2b66fdfdfc72d9811fd410cc3449773a951 /tests/misc
parent849c3830dc9b89a698a279a75c2bfa1e4f985fe4 (diff)
downloadcoreutils-0e9b06482efea407a7a90630c9e62d9bec5e94f4.tar.xz
Add tests to show new class of strings accepted by date -d.
* tests/misc/date (rel-1day, rel-plus1): New tests for the recent change in gnulib's getdate.y. * NEWS: Mention the fix.
Diffstat (limited to 'tests/misc')
-rwxr-xr-xtests/misc/date5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/misc/date b/tests/misc/date
index 7408ea277..4a87e648a 100755
--- a/tests/misc/date
+++ b/tests/misc/date
@@ -126,6 +126,11 @@ my @Tests =
['rel-3a', "-d '$d1 4 seconds ago' $fmt", {OUT=>"$d0 08:17:44"}],
+ # This has always worked, ...
+ ['rel-1day', "-d '20050101 1 day' +%F", {OUT=>"2005-01-02"}],
+ # ...but up to coreutils-6.9, this was rejected due to the "+".
+ ['rel-plus1', "-d '20050101 +1 day' +%F", {OUT=>"2005-01-02"}],
+
['next-s', "-d '$d1 next second' '+%Y-%m-%d %T'", {OUT=>"$d0 $ts"}],
['next-m', "-d '$d1 next minute' '+%Y-%m-%d %T'", {OUT=>"$d0 $tm"}],
['next-h', "-d '$d1 next hour' '+%Y-%m-%d %T'", {OUT=>"$d0 $th"}],