summaryrefslogtreecommitdiff
path: root/t/t4212-log-corrupt.sh
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2014-04-09 11:59:38 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2014-04-09 11:59:38 -0700
commitb8a30194dbea86228aa55fb270f3d704cf7924f4 (patch)
tree2a844dbab6da69248532e464e1a16547fe047022 /t/t4212-log-corrupt.sh
parentMerge branch 'jc/fix-diff-no-index-diff-opt-parse' into maint (diff)
parentt4212: loosen far-in-future test for AIX (diff)
downloadtgif-b8a30194dbea86228aa55fb270f3d704cf7924f4.tar.xz
Merge branch 'jk/commit-dates-parsing-fix' into maint
* jk/commit-dates-parsing-fix: t4212: loosen far-in-future test for AIX date: recognize bogus FreeBSD gmtime output
Diffstat (limited to 't/t4212-log-corrupt.sh')
-rwxr-xr-xt/t4212-log-corrupt.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/t/t4212-log-corrupt.sh b/t/t4212-log-corrupt.sh
index 3fa171541a..58b792bf20 100755
--- a/t/t4212-log-corrupt.sh
+++ b/t/t4212-log-corrupt.sh
@@ -82,11 +82,9 @@ test_expect_success 'date parser recognizes time_t overflow' '
'
# date is within 2^63-1, but enough to choke glibc's gmtime
-test_expect_success 'absurdly far-in-future dates produce sentinel' '
+test_expect_success 'absurdly far-in-future date' '
commit=$(munge_author_date HEAD 999999999999999999) &&
- echo "Thu Jan 1 00:00:00 1970 +0000" >expect &&
- git log -1 --format=%ad $commit >actual &&
- test_cmp expect actual
+ git log -1 --format=%ad $commit
'
test_done