diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2020-06-19 17:55:58 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-06-19 14:04:09 -0700 |
commit | 4ddd3f506390af217fb86508691cf07f3279e6d2 (patch) | |
tree | 76dd1be851c4bcd3c542c50f7efc5236665eeb1d /t/t5704-protocol-violations.sh | |
parent | t5703: use object-format serve option (diff) | |
download | tgif-4ddd3f506390af217fb86508691cf07f3279e6d2.tar.xz |
t5704: send object-format capability with SHA-256
When we speak protocol v2 in this test, we must pass the object-format
header if the algorithm is not SHA-1. Otherwise, git upload-pack fails
because the hash algorithm doesn't match and not because we've failed to
speak the protocol correctly. Pass the header so that our assertions
test what we're really interested in.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5704-protocol-violations.sh')
-rwxr-xr-x | t/t5704-protocol-violations.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/t5704-protocol-violations.sh b/t/t5704-protocol-violations.sh index 950cfb21fe..5c941949b9 100755 --- a/t/t5704-protocol-violations.sh +++ b/t/t5704-protocol-violations.sh @@ -9,6 +9,7 @@ making sure that we do not segfault or otherwise behave badly.' test_expect_success 'extra delim packet in v2 ls-refs args' ' { packetize command=ls-refs && + packetize "object-format=$(test_oid algo)" && printf 0001 && # protocol expects 0000 flush here printf 0001 @@ -21,6 +22,7 @@ test_expect_success 'extra delim packet in v2 ls-refs args' ' test_expect_success 'extra delim packet in v2 fetch args' ' { packetize command=fetch && + packetize "object-format=$(test_oid algo)" && printf 0001 && # protocol expects 0000 flush here printf 0001 |