aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl
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/testcurl
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/testcurl')
-rw-r--r--src/testcurl/Makefile.am10
1 files changed, 6 insertions, 4 deletions
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 \