Home | History | Annotate | Download | only in testcurl

Lines Matching defs:errorCount

434   unsigned int errorCount = 0;
438 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, 0, 0);
439 errorCount += testGet (MHD_USE_THREAD_PER_CONNECTION, 0, 0);
440 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, CPU_COUNT, 0);
441 errorCount += testExternalGet ();
444 errorCount += testGet(MHD_USE_SELECT_INTERNALLY, 0, MHD_USE_POLL);
445 errorCount += testGet (MHD_USE_THREAD_PER_CONNECTION, 0, MHD_USE_POLL);
446 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, CPU_COUNT, MHD_USE_POLL);
450 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, 0, MHD_USE_EPOLL_LINUX_ONLY);
451 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, CPU_COUNT, MHD_USE_EPOLL_LINUX_ONLY);
453 if (errorCount != 0)
454 fprintf (stderr, "Error (code: %u)\n", errorCount);
456 return errorCount != 0; /* 0 == pass */