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>
maint
parent
0c3db67cc8
commit
383c3427af
|
|
@ -201,4 +201,15 @@ test_expect_success 'corrupt tag' '
|
||||||
test_must_fail git hash-object -t tag --stdin </dev/null
|
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
|
test_done
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue