Merge branch 'jt/t5551-test-chunked'

Update smart-http test.

* jt/t5551-test-chunked:
  t5551: test usage of chunked encoding explicitly
This commit is contained in:
Junio C Hamano 2019-07-11 15:16:47 -07:00
Родитель 32749c35a4 8d45ad8c29
Коммит d5df41cec6
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -301,11 +301,10 @@ test_expect_success CMDLINE_LIMIT \
) )
' '
test_expect_success 'large fetch-pack requests can be split across POSTs' ' test_expect_success 'large fetch-pack requests can be sent using chunked encoding' '
GIT_TRACE_CURL=true git -c http.postbuffer=65536 \ GIT_TRACE_CURL=true git -c http.postbuffer=65536 \
clone --bare "$HTTPD_URL/smart/repo.git" split.git 2>err && clone --bare "$HTTPD_URL/smart/repo.git" split.git 2>err &&
grep "^=> Send header: POST" err >posts && grep "^=> Send header: Transfer-Encoding: chunked" err
test_line_count = 2 posts
' '
test_expect_success 'test allowreachablesha1inwant' ' test_expect_success 'test allowreachablesha1inwant' '