aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2020-09-24 16:53:07 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2020-09-24 16:53:07 +0300
commitf7c5d0d6568141b96af5061b3768fe373c4b69f2 (patch)
tree9bc9047e8126b55e59cc985e9368280a0b29e938 /src
parent0c1320721063a811ea76e73559417fdc764bcd9c (diff)
downloadlibmicrohttpd-f7c5d0d6568141b96af5061b3768fe373c4b69f2.tar.gz
libmicrohttpd-f7c5d0d6568141b96af5061b3768fe373c4b69f2.zip
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 (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/microhttpd/Makefile.am2
-rw-r--r--src/testcurl/Makefile.am10
3 files changed, 8 insertions, 6 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index ee9c3fcb..1f43e73d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -22,3 +22,5 @@ endif
22EXTRA_DIST = \ 22EXTRA_DIST = \
23 datadir/cert-and-key.pem \ 23 datadir/cert-and-key.pem \
24 datadir/cert-and-key-for-wireshark.pem 24 datadir/cert-and-key-for-wireshark.pem
25
26.NOTPARALLEL:
diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am
index 5292593f..7a814603 100644
--- a/src/microhttpd/Makefile.am
+++ b/src/microhttpd/Makefile.am
@@ -150,8 +150,6 @@ libmicrohttpd_la_SOURCES += \
150 connection_https.c connection_https.h 150 connection_https.c connection_https.h
151endif 151endif
152 152
153.NOTPARALLEL:
154
155check_PROGRAMS = \ 153check_PROGRAMS = \
156 test_str_compare \ 154 test_str_compare \
157 test_str_to_value \ 155 test_str_to_value \
diff --git a/src/testcurl/Makefile.am b/src/testcurl/Makefile.am
index 511a4c13..687b77bf 100644
--- a/src/testcurl/Makefile.am
+++ b/src/testcurl/Makefile.am
@@ -25,14 +25,11 @@ THREAD_ONLY_TESTS = \
25 test_termination \ 25 test_termination \
26 test_timeout 26 test_timeout
27 27
28.NOTPARALLEL:
29
30if HAVE_POSIX_THREADS 28if HAVE_POSIX_THREADS
31THREAD_ONLY_TESTS += \ 29THREAD_ONLY_TESTS += \
32 perf_get_concurrent11 \ 30 perf_get_concurrent11 \
33 test_quiesce \ 31 test_quiesce \
34 test_concurrent_stop \ 32 test_concurrent_stop
35 perf_get_concurrent
36 33
37if HAVE_CURL_BINARY 34if HAVE_CURL_BINARY
38THREAD_ONLY_TESTS += \ 35THREAD_ONLY_TESTS += \
@@ -47,6 +44,11 @@ if ENABLE_DAUTH
47 test_digestauth_with_arguments 44 test_digestauth_with_arguments
48endif 45endif
49 46
47if HAVE_POSIX_THREADS
48THREAD_ONLY_TESTS += \
49 perf_get_concurrent
50endif
51
50if HAVE_CURL 52if HAVE_CURL
51check_PROGRAMS = \ 53check_PROGRAMS = \
52 test_get \ 54 test_get \