wininet/tests: Temporize async HttpSendRequestEx test to avoid timeouts.

This commit is contained in:
Nicolas Le Cam 2009-05-10 00:40:03 +02:00 committed by Alexandre Julliard
parent 16d3442a34
commit 6ef2402c50

View file

@ -2493,6 +2493,7 @@ static void test_async_HttpSendRequestEx(void)
InternetCloseHandle( ses );
WaitForSingleObject( info.wait, 10000 );
Sleep(100);
CloseHandle( info.wait );
}
@ -2557,9 +2558,9 @@ START_TEST(http)
InternetOpenRequest_test();
test_http_cache();
InternetOpenUrlA_test();
HttpSendRequestEx_test();
HttpHeaders_test();
test_http_connection();
test_user_agent_header();
test_bogus_accept_types_array();
HttpSendRequestEx_test();
}