Title: [243045] trunk/Tools
Revision
243045
Author
[email protected]
Date
2019-03-16 14:22:20 -0700 (Sat, 16 Mar 2019)

Log Message

REGRESSION (r243019): Failing API test: WebKit.WebsiteDataStoreCustomPathsWithoutPrewarming
https://bugs.webkit.org/show_bug.cgi?id=195849

Reviewed by Chris Dumez.

We should expect IDB database files to be at path IndexedDB/v1/ after r243019.

* TestWebKitAPI/Tests/WebKitCocoa/WebsiteDataStoreCustomPaths.mm:
(runWebsiteDataStoreCustomPaths):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (243044 => 243045)


--- trunk/Tools/ChangeLog	2019-03-16 21:17:40 UTC (rev 243044)
+++ trunk/Tools/ChangeLog	2019-03-16 21:22:20 UTC (rev 243045)
@@ -1,3 +1,15 @@
+2019-03-16  Sihui Liu  <[email protected]>
+
+        REGRESSION (r243019): Failing API test: WebKit.WebsiteDataStoreCustomPathsWithoutPrewarming
+        https://bugs.webkit.org/show_bug.cgi?id=195849
+
+        Reviewed by Chris Dumez.
+
+        We should expect IDB database files to be at path IndexedDB/v1/ after r243019.
+
+        * TestWebKitAPI/Tests/WebKitCocoa/WebsiteDataStoreCustomPaths.mm:
+        (runWebsiteDataStoreCustomPaths):
+
 2019-03-15  Jonathan Bedard  <[email protected]>
 
         webkitpy: Upload test results

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebsiteDataStoreCustomPaths.mm (243044 => 243045)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebsiteDataStoreCustomPaths.mm	2019-03-16 21:17:40 UTC (rev 243044)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebsiteDataStoreCustomPaths.mm	2019-03-16 21:22:20 UTC (rev 243045)
@@ -184,7 +184,7 @@
 
     EXPECT_TRUE([[NSFileManager defaultManager] fileExistsAtPath:idbPath.path]);
     EXPECT_TRUE([[NSFileManager defaultManager] fileExistsAtPath:defaultIDBPath.path]);
-    RetainPtr<NSURL> fileIDBPath = [idbPath URLByAppendingPathComponent:@"file__0"];
+    RetainPtr<NSURL> fileIDBPath = [[idbPath URLByAppendingPathComponent:@"v1"] URLByAppendingPathComponent:@"file__0"];
     EXPECT_TRUE([[NSFileManager defaultManager] fileExistsAtPath:fileIDBPath.get().path]);
 
     RetainPtr<WKWebsiteDataStore> dataStore = [[WKWebsiteDataStore alloc] _initWithConfiguration:websiteDataStoreConfiguration.get()];
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to