WebKit Bugzilla
Attachment 360666 Details for
Bug 193956
: REGRESSION (r240358): IndexedDB/large-binary-keys.html and IndexedDB/large-string-keys.html perf tests failing
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-193956-20190130183531.patch (text/plain), 2.13 KB, created by
Sihui Liu
on 2019-01-30 18:35:32 PST
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Sihui Liu
Created:
2019-01-30 18:35:32 PST
Size:
2.13 KB
patch
obsolete
>Subversion Revision: 240715 >diff --git a/PerformanceTests/ChangeLog b/PerformanceTests/ChangeLog >index c045c1e094ce3fcf6682fdd145da510ba2f87f51..726c5ac2102b6f3a922e60c3338e3ffabe82a05a 100644 >--- a/PerformanceTests/ChangeLog >+++ b/PerformanceTests/ChangeLog >@@ -1,3 +1,16 @@ >+2019-01-30 Sihui Liu <sihui_liu@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 NOBODY (OOPS!). >+ >+ 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 <sbarati@apple.com> > > Use scores everywhere in JetStream2's UI >diff --git a/PerformanceTests/IndexedDB/large-binary-keys.html b/PerformanceTests/IndexedDB/large-binary-keys.html >index 72a71cfab3b2d405a36fae2a9e112cb5a0306824..e4ff4bf5fff0ec9e8c52cb122dca9a6398d392f5 100644 >--- a/PerformanceTests/IndexedDB/large-binary-keys.html >+++ b/PerformanceTests/IndexedDB/large-binary-keys.html >@@ -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) { >diff --git a/PerformanceTests/IndexedDB/large-string-keys.html b/PerformanceTests/IndexedDB/large-string-keys.html >index 916d90aeed7fb1f46556b54bac1489e0708cc41f..1e406cb24ccc5029b02619de4a2c759dd803fd8c 100644 >--- a/PerformanceTests/IndexedDB/large-string-keys.html >+++ b/PerformanceTests/IndexedDB/large-string-keys.html >@@ -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) {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 193956
: 360666 |
360685