Lines Matching refs:errorCount
336 unsigned int errorCount = 0; in main() local
346 errorCount += testInternalGet (port++, 0); in main()
347 errorCount += testMultithreadedGet (port++, 0); in main()
348 errorCount += testMultithreadedPoolGet (port++, 0); in main()
349 errorCount += testExternalGet (port++); in main()
351 errorCount += testInternalGet (port++, MHD_USE_POLL); in main()
352 errorCount += testMultithreadedGet (port++, MHD_USE_POLL); in main()
353 errorCount += testMultithreadedPoolGet (port++, MHD_USE_POLL); in main()
356 errorCount += testInternalGet (port++, MHD_USE_EPOLL_LINUX_ONLY); in main()
357 errorCount += testMultithreadedPoolGet (port++, MHD_USE_EPOLL_LINUX_ONLY); in main()
360 if (errorCount != 0) in main()
361 fprintf (stderr, "Error (code: %u)\n", errorCount); in main()
363 return errorCount != 0; /* 0 == pass */ in main()