gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r22563 - libmicrohttpd/src/testcurl


From: gnunet
Subject: [GNUnet-SVN] r22563 - libmicrohttpd/src/testcurl
Date: Mon, 9 Jul 2012 13:42:11 +0200

Author: grothoff
Date: 2012-07-09 13:42:11 +0200 (Mon, 09 Jul 2012)
New Revision: 22563

Modified:
   libmicrohttpd/src/testcurl/daemontest_get.c
   libmicrohttpd/src/testcurl/perf_get.c
   libmicrohttpd/src/testcurl/perf_get_concurrent.c
   libmicrohttpd/src/testcurl/test_start_stop.c
Log:
-LRN: no poll on mingw32

Modified: libmicrohttpd/src/testcurl/daemontest_get.c
===================================================================
--- libmicrohttpd/src/testcurl/daemontest_get.c 2012-07-09 11:38:23 UTC (rev 
22562)
+++ libmicrohttpd/src/testcurl/daemontest_get.c 2012-07-09 11:42:11 UTC (rev 
22563)
@@ -499,11 +499,13 @@
   errorCount += testUnknownPortGet (0);
   errorCount += testStopRace (0);
   errorCount += testExternalGet ();
+#if !WINDOWS
   errorCount += testInternalGet (MHD_USE_POLL);
   errorCount += testMultithreadedGet (MHD_USE_POLL);
   errorCount += testMultithreadedPoolGet (MHD_USE_POLL);
   errorCount += testUnknownPortGet (MHD_USE_POLL);
   errorCount += testStopRace (MHD_USE_POLL);
+#endif
   if (errorCount != 0)
     fprintf (stderr, "Error (code: %u)\n", errorCount);
   curl_global_cleanup ();

Modified: libmicrohttpd/src/testcurl/perf_get.c
===================================================================
--- libmicrohttpd/src/testcurl/perf_get.c       2012-07-09 11:38:23 UTC (rev 
22562)
+++ libmicrohttpd/src/testcurl/perf_get.c       2012-07-09 11:42:11 UTC (rev 
22563)
@@ -493,9 +493,11 @@
   errorCount += testMultithreadedGet (port++, 0);
   errorCount += testMultithreadedPoolGet (port++, 0);
   errorCount += testExternalGet (port++);
+#if !WINDOWS
   errorCount += testInternalGet (port++, MHD_USE_POLL);
   errorCount += testMultithreadedGet (port++, MHD_USE_POLL);
   errorCount += testMultithreadedPoolGet (port++, MHD_USE_POLL);
+#endif
   MHD_destroy_response (response);
   if (errorCount != 0)
     fprintf (stderr, "Error (code: %u)\n", errorCount);

Modified: libmicrohttpd/src/testcurl/perf_get_concurrent.c
===================================================================
--- libmicrohttpd/src/testcurl/perf_get_concurrent.c    2012-07-09 11:38:23 UTC 
(rev 22562)
+++ libmicrohttpd/src/testcurl/perf_get_concurrent.c    2012-07-09 11:42:11 UTC 
(rev 22563)
@@ -331,9 +331,11 @@
   errorCount += testMultithreadedGet (port++, 0);
   errorCount += testMultithreadedPoolGet (port++, 0);
   errorCount += testExternalGet (port++);
+#if !WINDOWS
   errorCount += testInternalGet (port++, MHD_USE_POLL);
   errorCount += testMultithreadedGet (port++, MHD_USE_POLL);
   errorCount += testMultithreadedPoolGet (port++, MHD_USE_POLL);
+#endif
   MHD_destroy_response (response);
   if (errorCount != 0)
     fprintf (stderr, "Error (code: %u)\n", errorCount);

Modified: libmicrohttpd/src/testcurl/test_start_stop.c
===================================================================
--- libmicrohttpd/src/testcurl/test_start_stop.c        2012-07-09 11:38:23 UTC 
(rev 22562)
+++ libmicrohttpd/src/testcurl/test_start_stop.c        2012-07-09 11:42:11 UTC 
(rev 22563)
@@ -105,9 +105,11 @@
   errorCount += testMultithreadedGet (0);
   errorCount += testMultithreadedPoolGet (0);
   errorCount += testExternalGet ();
+#if !WINDOWS
   errorCount += testInternalGet (MHD_USE_POLL);
   errorCount += testMultithreadedGet (MHD_USE_POLL);
   errorCount += testMultithreadedPoolGet (MHD_USE_POLL);
+#endif
   if (errorCount != 0)
     fprintf (stderr, "Error (code: %u)\n", errorCount);
   return errorCount != 0;       /* 0 == pass */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]