Title: [240767] trunk/PerformanceTests
Revision
240767
Author
sihui_...@apple.com
Date
2019-01-31 00:06:16 -0800 (Thu, 31 Jan 2019)

Log Message

REGRESSION (r240358): IndexedDB/large-binary-keys.html and IndexedDB/large-string-keys.html perf tests failing
https://bugs.webkit.org/show_bug.cgi?id=193956
<rdar://problem/47623109>

Reviewed by Ryosuke Niwa.

r240358 sets default IDB quota as 50 MB for single test, we need to increase that for big tests.

* IndexedDB/large-binary-keys.html:
* IndexedDB/large-string-keys.html:

Modified Paths

Diff

Modified: trunk/PerformanceTests/ChangeLog (240766 => 240767)


--- trunk/PerformanceTests/ChangeLog	2019-01-31 07:42:41 UTC (rev 240766)
+++ trunk/PerformanceTests/ChangeLog	2019-01-31 08:06:16 UTC (rev 240767)
@@ -1,3 +1,16 @@
+2019-01-31  Sihui Liu  <sihui_...@apple.com>
+
+        REGRESSION (r240358): IndexedDB/large-binary-keys.html and IndexedDB/large-string-keys.html perf tests failing
+        https://bugs.webkit.org/show_bug.cgi?id=193956
+        <rdar://problem/47623109>
+
+        Reviewed by Ryosuke Niwa.
+
+        r240358 sets default IDB quota as 50 MB for single test, we need to increase that for big tests. 
+
+        * IndexedDB/large-binary-keys.html:
+        * IndexedDB/large-string-keys.html:
+
 2019-01-18  Saam Barati  <sbar...@apple.com>
 
         Use scores everywhere in JetStream2's UI

Modified: trunk/PerformanceTests/IndexedDB/large-binary-keys.html (240766 => 240767)


--- trunk/PerformanceTests/IndexedDB/large-binary-keys.html	2019-01-31 07:42:41 UTC (rev 240766)
+++ trunk/PerformanceTests/IndexedDB/large-binary-keys.html	2019-01-31 08:06:16 UTC (rev 240767)
@@ -7,6 +7,10 @@
 var iterationCount = 20;
 var numberDeleted = 0;
 
+var quota = 500 * 1024 * 1024; //500MB
+if (window.testRunner)
+    testRunner.setIDBPerOriginQuota(quota);
+
 // Delete all databases for the test ahead of time.
 var databasePrefix = "large-string-keys-DB-";
 for (var i = 0; i < iterationCount + 1; ++i) {

Modified: trunk/PerformanceTests/IndexedDB/large-string-keys.html (240766 => 240767)


--- trunk/PerformanceTests/IndexedDB/large-string-keys.html	2019-01-31 07:42:41 UTC (rev 240766)
+++ trunk/PerformanceTests/IndexedDB/large-string-keys.html	2019-01-31 08:06:16 UTC (rev 240767)
@@ -7,6 +7,10 @@
 var iterationCount = 20;
 var numberDeleted = 0;
 
+var quota = 500 * 1024 * 1024; //500MB
+if (window.testRunner)
+    testRunner.setIDBPerOriginQuota(quota);
+
 // Delete all databases for the test ahead of time.
 var databasePrefix = "large-string-keys-DB-";
 for (var i = 0; i < iterationCount + 1; ++i) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to