Title: [248435] trunk/Tools
Revision
248435
Author
[email protected]
Date
2019-08-08 12:04:35 -0700 (Thu, 08 Aug 2019)

Log Message

[GTK] Fix /webkit/WebKitWebsiteData/databases failure
https://bugs.webkit.org/show_bug.cgi?id=200536

Reviewed by Carlos Alberto Lopez Perez.

* TestWebKitAPI/Tests/WebKitGLib/TestWebsiteData.cpp:
(testWebsiteDataDatabases): Databases take a moment to be written,
wait before fetching the data as it's done in other tests.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (248434 => 248435)


--- trunk/Tools/ChangeLog	2019-08-08 18:59:04 UTC (rev 248434)
+++ trunk/Tools/ChangeLog	2019-08-08 19:04:35 UTC (rev 248435)
@@ -1,3 +1,14 @@
+2019-08-08  Claudio Saavedra  <[email protected]>
+
+        [GTK] Fix /webkit/WebKitWebsiteData/databases failure
+        https://bugs.webkit.org/show_bug.cgi?id=200536
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        * TestWebKitAPI/Tests/WebKitGLib/TestWebsiteData.cpp:
+        (testWebsiteDataDatabases): Databases take a moment to be written,
+        wait before fetching the data as it's done in other tests.
+
 2019-08-08  Jonathan Bedard  <[email protected]>
 
         results.webkit.org: Use canvas for timeline

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebsiteData.cpp (248434 => 248435)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebsiteData.cpp	2019-08-08 18:59:04 UTC (rev 248434)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebsiteData.cpp	2019-08-08 19:04:35 UTC (rev 248435)
@@ -413,6 +413,8 @@
     test->waitUntilLoadFinished();
     test->runJavaScriptAndWaitUntilFinished("window.indexedDB.open('TestDatabase');", nullptr);
 
+    test->wait(1);
+
     dataList = test->fetch(databaseTypes);
     g_assert_nonnull(dataList);
     g_assert_cmpuint(g_list_length(dataList), ==, 1);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to