summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2015-01-12 14:01:18 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2015-01-12 14:01:18 -0800
commit9ea21fa89c3b0762189d2d6e4689b8e09940aad4 (patch)
tree3dbfb8daa87c48aa679822205eb11638749e832f /t
parentMerge branch 'rw/apply-does-not-take-ignore-date' into maint (diff)
parentapproxidate: allow ISO-like dates far in the future (diff)
downloadtgif-9ea21fa89c3b0762189d2d6e4689b8e09940aad4.tar.xz
Merge branch 'jk/approxidate-avoid-y-d-m-over-future-dates' into maint
* jk/approxidate-avoid-y-d-m-over-future-dates: approxidate: allow ISO-like dates far in the future pass TIME_DATE_NOW to approxidate future-check
Diffstat (limited to 't')
-rwxr-xr-xt/t0006-date.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/t0006-date.sh b/t/t0006-date.sh
index e53cf6d36d..fac0986134 100755
--- a/t/t0006-date.sh
+++ b/t/t0006-date.sh
@@ -82,4 +82,7 @@ check_approxidate 'Jun 6, 5AM' '2009-06-06 05:00:00'
check_approxidate '5AM Jun 6' '2009-06-06 05:00:00'
check_approxidate '6AM, June 7, 2009' '2009-06-07 06:00:00'
+check_approxidate '2008-12-01' '2008-12-01 19:20:00'
+check_approxidate '2009-12-01' '2009-12-01 19:20:00'
+
test_done