Skip to content

Commit

Permalink
Merge branch 'mk/t5562-no-input-to-too-large-an-input-test'
Browse files Browse the repository at this point in the history
* mk/t5562-no-input-to-too-large-an-input-test:
  t5562: do not depend on /dev/zero
  Revert "t5562: replace /dev/zero with a pipe from generate_zero_bytes"
  • Loading branch information
gitster committed Feb 19, 2019
2 parents 455d0be + 7094175 commit 2c804ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/t5562-http-backend-content-length.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,14 +143,14 @@ test_expect_success GZIP 'push gzipped empty' '

test_expect_success 'CONTENT_LENGTH overflow ssite_t' '
NOT_FIT_IN_SSIZE=$(ssize_b100dots) &&
generate_zero_bytes infinity | env \
env \
CONTENT_TYPE=application/x-git-upload-pack-request \
QUERY_STRING=/repo.git/git-upload-pack \
PATH_TRANSLATED="$PWD"/.git/git-upload-pack \
GIT_HTTP_EXPORT_ALL=TRUE \
REQUEST_METHOD=POST \
CONTENT_LENGTH="$NOT_FIT_IN_SSIZE" \
git http-backend >/dev/null 2>err &&
git http-backend </dev/null >/dev/null 2>err &&
grep "fatal:.*CONTENT_LENGTH" err
'

Expand Down

0 comments on commit 2c804ff

Please sign in to comment.