Title: [284539] trunk/Tools
Revision
284539
Author
achristen...@apple.com
Date
2021-10-20 09:34:16 -0700 (Wed, 20 Oct 2021)

Log Message

Skip timing out tests on iOS while I investigate.
https://bugs.webkit.org/show_bug.cgi?id=232003

These tests are clearly timing out on iOS, but it'll take more than an hour or so to investigate.
Keep the bots green while I look into a better solution.

* TestWebKitAPI/Tests/WebKitCocoa/ContentRuleListNotification.mm:
* TestWebKitAPI/Tests/WebKitCocoa/HSTS.mm:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (284538 => 284539)


--- trunk/Tools/ChangeLog	2021-10-20 16:04:15 UTC (rev 284538)
+++ trunk/Tools/ChangeLog	2021-10-20 16:34:16 UTC (rev 284539)
@@ -1,3 +1,14 @@
+2021-10-20  Alex Christensen  <achristen...@webkit.org>
+
+        Skip timing out tests on iOS while I investigate.
+        https://bugs.webkit.org/show_bug.cgi?id=232003
+
+        These tests are clearly timing out on iOS, but it'll take more than an hour or so to investigate.
+        Keep the bots green while I look into a better solution.
+
+        * TestWebKitAPI/Tests/WebKitCocoa/ContentRuleListNotification.mm:
+        * TestWebKitAPI/Tests/WebKitCocoa/HSTS.mm:
+
 2021-10-20  Michael Catanzaro  <mcatanz...@gnome.org>
 
         Do not use strerror()

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ContentRuleListNotification.mm (284538 => 284539)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ContentRuleListNotification.mm	2021-10-20 16:04:15 UTC (rev 284538)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ContentRuleListNotification.mm	2021-10-20 16:34:16 UTC (rev 284539)
@@ -494,6 +494,8 @@
     TestWebKitAPI::Util::run(&gotSource);
 }
 
+// FIXME: https://bugs.webkit.org/show_bug.cgi?id=232003 Make this test stop timing out on iOS.
+#if PLATFORM(MAC)
 TEST(WebKit, RedirectToPlaintextHTTPSUpgrade)
 {
     using namespace TestWebKitAPI;
@@ -515,3 +517,4 @@
     [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"https://download/originalRequest"]]];
     EXPECT_WK_STREQ([webView _test_waitForAlert], "success!");
 }
+#endif // PLATFORM(MAC)

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/HSTS.mm (284538 => 284539)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/HSTS.mm	2021-10-20 16:04:15 UTC (rev 284538)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/HSTS.mm	2021-10-20 16:34:16 UTC (rev 284539)
@@ -63,6 +63,8 @@
     return HTTPServer({{ "/", {{{"Strict-Transport-Security" , "max-age=31536000"}}, "" }}}, HTTPServer::Protocol::HttpsProxy);
 }
 
+// FIXME: https://bugs.webkit.org/show_bug.cgi?id=232003 Make this test stop timing out on iOS.
+#if PLATFORM(MAC)
 TEST(HSTS, Basic)
 {
     auto httpsServer = hstsServer();
@@ -138,6 +140,7 @@
     EXPECT_WK_STREQ(webView.get().URL.absoluteString, "https://example.com/");
     EXPECT_EQ(httpServer.totalRequests(), 1u);
 }
+#endif // PLATFORM(MAC)
 
 #endif // HAVE(CFNETWORK_NSURLSESSION_HSTS_WITH_UNTRUSTED_ROOT)
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to