Skip t5540-http-push test when USE_CURL_MULTI is undefined

When USE_CURL_MULTI is undefined, git http-push doesn't work, so it's
useless to test it.

Signed-off-by: Mike Hommey <mh@glandium.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Mike Hommey 2008-07-07 21:02:50 +02:00 коммит произвёл Junio C Hamano
Родитель 13b5481ed8
Коммит 9608626282
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -12,6 +12,13 @@ This test runs various sanity checks on http-push.'
ROOT_PATH="$PWD"
LIB_HTTPD_DAV=t
if git http-push > /dev/null 2>&1 || [ $? -eq 128 ]
then
say "skipping test, USE_CURL_MULTI is not defined"
test_done
exit
fi
. ../lib-httpd.sh
if ! start_httpd >&3 2>&4