libmicrohttpd

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

commit f7c5d0d6568141b96af5061b3768fe373c4b69f2
parent 0c1320721063a811ea76e73559417fdc764bcd9c
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Thu, 24 Sep 2020 16:53:07 +0300

makefiles: removed .NOTPARALLEL: from main makefiles
Library itself, main tests and libcurl test could be build and
performed in parallel due to MHD_FEATURE_AUTODETECT_BIND_PORT feature
testzzuf tests still need to be updated for support of parallel
testing

Diffstat:
Msrc/Makefile.am | 2++
Msrc/microhttpd/Makefile.am | 2--
Msrc/testcurl/Makefile.am | 10++++++----
3 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/src/Makefile.am b/src/Makefile.am @@ -22,3 +22,5 @@ endif EXTRA_DIST = \ datadir/cert-and-key.pem \ datadir/cert-and-key-for-wireshark.pem + +.NOTPARALLEL: diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am @@ -150,8 +150,6 @@ libmicrohttpd_la_SOURCES += \ connection_https.c connection_https.h endif -.NOTPARALLEL: - check_PROGRAMS = \ test_str_compare \ test_str_to_value \ diff --git a/src/testcurl/Makefile.am b/src/testcurl/Makefile.am @@ -25,14 +25,11 @@ THREAD_ONLY_TESTS = \ test_termination \ test_timeout -.NOTPARALLEL: - if HAVE_POSIX_THREADS THREAD_ONLY_TESTS += \ perf_get_concurrent11 \ test_quiesce \ - test_concurrent_stop \ - perf_get_concurrent + test_concurrent_stop if HAVE_CURL_BINARY THREAD_ONLY_TESTS += \ @@ -47,6 +44,11 @@ if ENABLE_DAUTH test_digestauth_with_arguments endif +if HAVE_POSIX_THREADS +THREAD_ONLY_TESTS += \ + perf_get_concurrent +endif + if HAVE_CURL check_PROGRAMS = \ test_get \