]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5581-http-curl-verbose.sh
The sixth batch
[thirdparty/git.git] / t / t5581-http-curl-verbose.sh
CommitLineData
e4871cd5
MS
1#!/bin/sh
2
3test_description='test GIT_CURL_VERBOSE'
4. ./test-lib.sh
5. "$TEST_DIRECTORY"/lib-httpd.sh
6start_httpd
7
8test_expect_success 'setup repository' '
9 mkdir "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
10 git -C "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" --bare init &&
11 git config push.default matching &&
12 echo content >file &&
13 git add file &&
14 git commit -m one &&
15 git remote add public "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
16 git push public master:master
17'
18
19test_expect_success 'failure in git-upload-pack is shown' '
20 test_might_fail env GIT_CURL_VERBOSE=1 \
21 git clone "$HTTPD_URL/error_git_upload_pack/smart/repo.git" \
22 2>curl_log &&
7167a62b 23 grep "<= Recv header: HTTP/1.1 500 Intentional Breakage" curl_log
e4871cd5
MS
24'
25
e4871cd5 26test_done