Author: akhaldi Date: Wed Apr 22 12:44:36 2015 New Revision: 67348
URL: http://svn.reactos.org/svn/reactos?rev=67348&view=rev Log: [URLMON_WINETEST] Skip test_http_protocol() and test_https_protocol() because of timeouts. ROSTESTS-165
Modified: trunk/rostests/winetests/urlmon/protocol.c
Modified: trunk/rostests/winetests/urlmon/protocol.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/urlmon/protocol.... ============================================================================== --- trunk/rostests/winetests/urlmon/protocol.c [iso-8859-1] (original) +++ trunk/rostests/winetests/urlmon/protocol.c [iso-8859-1] Wed Apr 22 12:44:36 2015 @@ -3772,11 +3772,22 @@ thread_id = GetCurrentThreadId();
test_file_protocol(); - test_http_protocol(); + + if (!winetest_interactive) + skip("ROSTESTS-165: Skipping test_http_protocol() because of timeouts.\n"); + else + test_http_protocol(); + if(pCreateUri) - test_https_protocol(); + { + if (!winetest_interactive) + skip("ROSTESTS-165: Skipping test_https_protocol() because of timeouts.\n"); + else + test_https_protocol(); + } else win_skip("Skipping https tests on too old platform\n"); + test_ftp_protocol(); test_gopher_protocol(); test_mk_protocol();