diff options
author | Eric Sunshine <sunshine@sunshineco.com> | 2015-05-04 03:25:14 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-05-05 10:17:54 -0700 |
commit | 383c3427afa3201eb05e931825c5c2f20616b58b (patch) | |
tree | 1ac2f07c1c74548ee7d1f26a53660ea8a0cc1959 /t | |
parent | hash-object --literally: fix buffer overrun with extra-long object type (diff) | |
download | tgif-383c3427afa3201eb05e931825c5c2f20616b58b.tar.xz |
t1007: add hash-object --literally tests
git-hash-object learned a --literally option in 5ba9a93
(hash-object: add --literally option, 2014-09-11). Check that
--literally allows object creation with a bogus type, with two
type strings whose length is reasonably short and very long.
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t1007-hash-object.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/t/t1007-hash-object.sh b/t/t1007-hash-object.sh index f83df8eb8b..7c3dcfb70c 100755 --- a/t/t1007-hash-object.sh +++ b/t/t1007-hash-object.sh @@ -201,4 +201,15 @@ test_expect_success 'corrupt tag' ' test_must_fail git hash-object -t tag --stdin </dev/null ' +test_expect_success '--literally' ' + t=1234567890 && + echo example | git hash-object -t $t --literally --stdin +' + +test_expect_success '--literally with extra-long type' ' + t=12345678901234567890123456789012345678901234567890 && + t="$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t" && + echo example | git hash-object -t $t --literally --stdin +' + test_done |