Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-06-16 21:06:05 +0400
committerJunio C Hamano <gitster@pobox.com>2014-06-16 21:06:05 +0400
commitfd800214384e60cc72272620bdde58f94746719e (patch)
tree43ffe7c4fe9c20396c02b21bca1ebe9226669c66 /t/lib-httpd.sh
parent499168af3b2a21e2d234a2093cb3c0f64e2f36a0 (diff)
parenta1a301114e0ba3f60474d857c93d02890d00e65b (diff)
Merge branch 'jk/do-not-run-httpd-tests-as-root'
* jk/do-not-run-httpd-tests-as-root: t/lib-httpd: require SANITY prereq
Diffstat (limited to 't/lib-httpd.sh')
-rw-r--r--t/lib-httpd.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/lib-httpd.sh b/t/lib-httpd.sh
index 252cbf163b..8b67021a6b 100644
--- a/t/lib-httpd.sh
+++ b/t/lib-httpd.sh
@@ -37,6 +37,11 @@ then
test_done
fi
+if ! test_have_prereq SANITY; then
+ test_skip_or_die $GIT_TEST_HTTPD \
+ "Cannot run httpd tests as root"
+fi
+
HTTPD_PARA=""
for DEFAULT_HTTPD_PATH in '/usr/sbin/httpd' '/usr/sbin/apache2'