Title: [261491] trunk/Tools
Revision
261491
Author
commit-qu...@webkit.org
Date
2020-05-11 13:05:30 -0700 (Mon, 11 May 2020)

Log Message

Add some logs to diagnose why WebKitLegacy.CrossPartitionFileSchemeAccess API test times out in EWS
https://bugs.webkit.org/show_bug.cgi?id=211738

Patch by Alex Christensen <achristen...@webkit.org> on 2020-05-11
Reviewed by Mark Lam.

* TestWebKitAPI/Tests/mac/CrossPartitionFileSchemeAccess.mm:
(TestWebKitAPI::TEST):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (261490 => 261491)


--- trunk/Tools/ChangeLog	2020-05-11 19:45:37 UTC (rev 261490)
+++ trunk/Tools/ChangeLog	2020-05-11 20:05:30 UTC (rev 261491)
@@ -1,3 +1,13 @@
+2020-05-11  Alex Christensen  <achristen...@webkit.org>
+
+        Add some logs to diagnose why WebKitLegacy.CrossPartitionFileSchemeAccess API test times out in EWS
+        https://bugs.webkit.org/show_bug.cgi?id=211738
+
+        Reviewed by Mark Lam.
+
+        * TestWebKitAPI/Tests/mac/CrossPartitionFileSchemeAccess.mm:
+        (TestWebKitAPI::TEST):
+
 2020-05-11  Andres Gonzalez  <andresg...@apple.com>
 
         Add mechanism to turn on accessibility isolated tree mode from WebKitTestRunner.

Modified: trunk/Tools/TestWebKitAPI/Tests/mac/CrossPartitionFileSchemeAccess.mm (261490 => 261491)


--- trunk/Tools/TestWebKitAPI/Tests/mac/CrossPartitionFileSchemeAccess.mm	2020-05-11 19:45:37 UTC (rev 261490)
+++ trunk/Tools/TestWebKitAPI/Tests/mac/CrossPartitionFileSchemeAccess.mm	2020-05-11 20:05:30 UTC (rev 261491)
@@ -89,6 +89,7 @@
 {
     NSURL *url = "" mainBundle] URLForResource:@"CrossPartitionFileSchemeAccess" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"];
     const char *filePath = [url fileSystemRepresentation];
+    WTFLogAlways("Creating partition...");
     createPartition(filePath);
         
     RetainPtr<WKWebViewConfiguration> configuration = adoptNS([[WKWebViewConfiguration alloc] init]);
@@ -99,7 +100,9 @@
     
     NSURLRequest *request = [NSURLRequest requestWithURL:url];
     [webView loadRequest:request];
+    WTFLogAlways("Navigating...");
     Util::run(&navigationComplete);
+    WTFLogAlways("Cleaning up...");
     cleanUp();
 }
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to