test/https_basic: increase timeout for complete write (fixes win32)

Otherwise on win32 we got 2, but test is ok, some timings issue.

Introduced-in: c968eb3
Fixes: https://ci.appveyor.com/project/azat/libevent/build/2.1.5.107/job/k70our1xdp0ym4dm#L1906
This commit is contained in:
Azat Khuzhin 2016-08-09 12:10:18 +03:00
parent c4dfb93ff2
commit d5a2f2f97f

View File

@ -478,7 +478,7 @@ http_basic_test_impl(void *arg, int ssl)
bufferevent_write(bev, http_request, strlen(http_request));
evutil_timerclear(&tv);
tv.tv_usec = 10000;
tv.tv_usec = 100000;
event_base_once(data->base,
-1, EV_TIMEOUT, http_complete_write, bev, &tv);