1
0
mirror of https://github.com/lammertb/libhttp.git synced 2025-12-22 04:02:04 +03:00

Increase test timeout for server tests

This commit is contained in:
bel
2015-08-17 00:29:12 +02:00
parent 5c94f638a7
commit 03e65fa601

View File

@@ -1120,9 +1120,11 @@ Suite *make_public_server_suite(void)
suite_add_tcase(suite, startthreads); suite_add_tcase(suite, startthreads);
tcase_add_test(startstophttp, test_mg_start_stop_http_server); tcase_add_test(startstophttp, test_mg_start_stop_http_server);
tcase_set_timeout(startstophttp, 10);
suite_add_tcase(suite, startstophttp); suite_add_tcase(suite, startstophttp);
tcase_add_test(startstophttps, test_mg_start_stop_https_server); tcase_add_test(startstophttps, test_mg_start_stop_https_server);
tcase_set_timeout(startstophttps, 10);
suite_add_tcase(suite, startstophttps); suite_add_tcase(suite, startstophttps);
tcase_add_test(serverrequests, test_request_handlers); tcase_add_test(serverrequests, test_request_handlers);