aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-01-24 21:30:10 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-01-24 21:30:10 +0300
commitb5bf6ccf78412974d3ab0be3ec262dae3d8e0443 (patch)
tree07877835d565c8f81b22acb1c6941fd9f57ab898 /configure.ac
parent8f66b6e03625e8b429ad61cf702dc5edf8099964 (diff)
downloadlibmicrohttpd-b5bf6ccf78412974d3ab0be3ec262dae3d8e0443.tar.gz
libmicrohttpd-b5bf6ccf78412974d3ab0be3ec262dae3d8e0443.zip
configure: added '--enable-heavy-tests'
Some tests may fail because of too intensive usage of OS resources. Skip by default resources-heavy tests so testsute can be run on a machine with some parallel activity.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index cb9c90a1..f3c0cde3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -933,6 +933,14 @@ AC_ARG_ENABLE([[examples]],
933test "x$enable_examples" = "xno" || enable_examples=yes 933test "x$enable_examples" = "xno" || enable_examples=yes
934AM_CONDITIONAL([BUILD_EXAMPLES], [test "x$enable_examples" = "xyes"]) 934AM_CONDITIONAL([BUILD_EXAMPLES], [test "x$enable_examples" = "xyes"])
935 935
936AC_ARG_ENABLE([[heavy-tests]],
937 [AS_HELP_STRING([[--enable-heavy-tests]], [use heavy tests in test-suite. WARNING:]
938 [a dedicated host with minimal number of background processes and no network]
939 [activity is recommended to enable.])], [],
940 [enable_heavy_tests=no])
941AS_VAR_IF([enable_heavy_tests], ["yes"], [], [enable_heavy_tests=no])
942AM_CONDITIONAL([HEAVY_TESTS],[test "x$enable_heavy_tests" = "xyes"])
943
936AC_ARG_ENABLE([[poll]], 944AC_ARG_ENABLE([[poll]],
937 [AS_HELP_STRING([[--enable-poll[=ARG]]], [enable poll support (yes, no, auto) [auto]])], 945 [AS_HELP_STRING([[--enable-poll[=ARG]]], [enable poll support (yes, no, auto) [auto]])],
938 [enable_poll=${enableval}], 946 [enable_poll=${enableval}],