libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 553f3e5de457f6eae5c1785e959339f6eb944994
parent 63b5181546bf00dd7a5cae05225d5b1c80bbbc75
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Sun, 30 Oct 2022 14:55:56 +0300

configure: added summary message about heavy tests

Diffstat:
Mconfigure.ac | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/configure.ac b/configure.ac @@ -1518,10 +1518,12 @@ AS_VAR_IF([enable_heavy_tests], ["yes"], [ HEAVY_TESTS_NOTPARALLEL='.NOTPARALLEL:' AC_DEFINE([_MHD_HEAVY_TESTS], [1], [Define to 1 to enable "heavy" test paths.]) + heavy_tests_MSG="yes (dedicated host is recommended)" ], [ enable_heavy_tests=no HEAVY_TESTS_NOTPARALLEL=" " + heavy_tests_MSG="no" ] ) AM_CONDITIONAL([HEAVY_TESTS],[test "x$enable_heavy_tests" = "xyes"]) @@ -4319,6 +4321,7 @@ AC_MSG_NOTICE([GNU libmicrohttpd ${PACKAGE_VERSION} Configuration Summary: Build static lib: ${enable_static} Build shared lib: ${enable_shared} Test with libcurl: ${MSG_CURL} + Heavy tests: ${heavy_tests_MSG} Fuzzing tests: ${run_zzuf_tests_MSG=no} ])