aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-30 14:55:56 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-30 14:55:56 +0300
commit553f3e5de457f6eae5c1785e959339f6eb944994 (patch)
tree858ee7dec1301612155451774b9e39fd09af8236
parent63b5181546bf00dd7a5cae05225d5b1c80bbbc75 (diff)
downloadlibmicrohttpd-553f3e5de457f6eae5c1785e959339f6eb944994.tar.gz
libmicrohttpd-553f3e5de457f6eae5c1785e959339f6eb944994.zip
configure: added summary message about heavy tests
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 484090cb..3ad191ec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1518,10 +1518,12 @@ AS_VAR_IF([enable_heavy_tests], ["yes"],
1518 [ 1518 [
1519 HEAVY_TESTS_NOTPARALLEL='.NOTPARALLEL:' 1519 HEAVY_TESTS_NOTPARALLEL='.NOTPARALLEL:'
1520 AC_DEFINE([_MHD_HEAVY_TESTS], [1], [Define to 1 to enable "heavy" test paths.]) 1520 AC_DEFINE([_MHD_HEAVY_TESTS], [1], [Define to 1 to enable "heavy" test paths.])
1521 heavy_tests_MSG="yes (dedicated host is recommended)"
1521 ], 1522 ],
1522 [ 1523 [
1523 enable_heavy_tests=no 1524 enable_heavy_tests=no
1524 HEAVY_TESTS_NOTPARALLEL=" " 1525 HEAVY_TESTS_NOTPARALLEL=" "
1526 heavy_tests_MSG="no"
1525 ] 1527 ]
1526) 1528)
1527AM_CONDITIONAL([HEAVY_TESTS],[test "x$enable_heavy_tests" = "xyes"]) 1529AM_CONDITIONAL([HEAVY_TESTS],[test "x$enable_heavy_tests" = "xyes"])
@@ -4319,6 +4321,7 @@ AC_MSG_NOTICE([GNU libmicrohttpd ${PACKAGE_VERSION} Configuration Summary:
4319 Build static lib: ${enable_static} 4321 Build static lib: ${enable_static}
4320 Build shared lib: ${enable_shared} 4322 Build shared lib: ${enable_shared}
4321 Test with libcurl: ${MSG_CURL} 4323 Test with libcurl: ${MSG_CURL}
4324 Heavy tests: ${heavy_tests_MSG}
4322 Fuzzing tests: ${run_zzuf_tests_MSG=no} 4325 Fuzzing tests: ${run_zzuf_tests_MSG=no}
4323]) 4326])
4324 4327