[URLMON_WINETEST] Skip test_http_protocol() and test_https_protocol() because of...
authorAmine Khaldi <amine.khaldi@reactos.org>
Wed, 22 Apr 2015 12:44:36 +0000 (12:44 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Wed, 22 Apr 2015 12:44:36 +0000 (12:44 +0000)
svn path=/trunk/; revision=67348

rostests/winetests/urlmon/protocol.c

index ff72bd6..d466b1a 100644 (file)
@@ -3772,11 +3772,22 @@ START_TEST(protocol)
     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();