aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/test_post.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl/test_post.c')
-rw-r--r--src/testcurl/test_post.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/testcurl/test_post.c b/src/testcurl/test_post.c
index 6b91b9cc..cfef2c46 100644
--- a/src/testcurl/test_post.c
+++ b/src/testcurl/test_post.c
@@ -774,10 +774,13 @@ main (int argc, char *const *argv)
774 (NULL != strstr (strrchr (argv[0], (int) '/'), "11")) : 0; 774 (NULL != strstr (strrchr (argv[0], (int) '/'), "11")) : 0;
775 if (0 != curl_global_init (CURL_GLOBAL_WIN32)) 775 if (0 != curl_global_init (CURL_GLOBAL_WIN32))
776 return 2; 776 return 2;
777 errorCount += testMultithreadedPostCancel (); 777 if (MHD_YES == MHD_is_feature_supported(MHD_FEATURE_THREADS))
778 errorCount += testInternalPost (); 778 {
779 errorCount += testMultithreadedPost (); 779 errorCount += testMultithreadedPostCancel ();
780 errorCount += testMultithreadedPoolPost (); 780 errorCount += testInternalPost ();
781 errorCount += testMultithreadedPost ();
782 errorCount += testMultithreadedPoolPost ();
783 }
781 errorCount += testExternalPost (); 784 errorCount += testExternalPost ();
782 if (errorCount != 0) 785 if (errorCount != 0)
783 fprintf (stderr, "Error (code: %u)\n", errorCount); 786 fprintf (stderr, "Error (code: %u)\n", errorCount);