diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-07-06 13:38:08 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-07-06 13:38:08 -0700 |
commit | 34bf3bbb304cabf4ae65e6b815d9690973668194 (patch) | |
tree | 493a978bd895c517ec18e525bc1b008254660f6f /t | |
parent | b8b6365a8a214f2427f2cf9334fd43ace0be619c (diff) | |
parent | 44f243d356a6402878b2b3e098fd8cfa4fe1aaf5 (diff) | |
download | git-34bf3bbb304cabf4ae65e6b815d9690973668194.tar.gz |
Merge branch 'nd/test-lib-httpd-show-error-log-in-verbose'
HTTPd tests learned to show the server error log to help diagnosing
a failing tests.
* nd/test-lib-httpd-show-error-log-in-verbose:
lib-httpd.sh: print error.log on error
Diffstat (limited to 't')
-rw-r--r-- | t/lib-httpd.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/lib-httpd.sh b/t/lib-httpd.sh index f9f3e5fd82..ac2cbee250 100644 --- a/t/lib-httpd.sh +++ b/t/lib-httpd.sh @@ -180,6 +180,7 @@ start_httpd() { if test $? -ne 0 then trap 'die' EXIT + cat "$HTTPD_ROOT_PATH"/error.log >&4 2>/dev/null test_skip_or_die $GIT_TEST_HTTPD "web server setup failed" fi } |