Marcus Meissner
687e4f74bd
OBS-URL: https://build.opensuse.org/request/show/316987 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmicrohttpd?expand=0&rev=46
27 lines
1.1 KiB
Diff
27 lines
1.1 KiB
Diff
Index: libmicrohttpd-0.9.42/src/testcurl/test_start_stop.c
|
|
===================================================================
|
|
--- libmicrohttpd-0.9.42.orig/src/testcurl/test_start_stop.c
|
|
+++ libmicrohttpd-0.9.42/src/testcurl/test_start_stop.c
|
|
@@ -108,21 +108,6 @@ main (int argc, char *const *argv)
|
|
{
|
|
unsigned int errorCount = 0;
|
|
|
|
- errorCount += testInternalGet (0);
|
|
- errorCount += testMultithreadedGet (0);
|
|
- errorCount += testMultithreadedPoolGet (0);
|
|
- errorCount += testExternalGet ();
|
|
- if (MHD_YES == MHD_is_feature_supported(MHD_FEATURE_POLL))
|
|
- {
|
|
- errorCount += testInternalGet(MHD_USE_POLL);
|
|
- errorCount += testMultithreadedGet(MHD_USE_POLL);
|
|
- errorCount += testMultithreadedPoolGet(MHD_USE_POLL);
|
|
- }
|
|
- if (MHD_YES == MHD_is_feature_supported(MHD_FEATURE_EPOLL))
|
|
- {
|
|
- errorCount += testInternalGet(MHD_USE_EPOLL_LINUX_ONLY);
|
|
- errorCount += testMultithreadedPoolGet(MHD_USE_EPOLL_LINUX_ONLY);
|
|
- }
|
|
if (errorCount != 0)
|
|
fprintf (stderr, "Error (code: %u)\n", errorCount);
|
|
return errorCount != 0; /* 0 == pass */
|