Changeset 240767 in webkit


Ignore:
Timestamp:
Jan 31, 2019 12:06:16 AM (5 years ago)
Author:
sihui_liu@apple.com
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:
Location:
trunk/PerformanceTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/PerformanceTests/ChangeLog

    r240192 r240767  
     12019-01-31  Sihui Liu  <sihui_liu@apple.com>
     2
     3        REGRESSION (r240358): IndexedDB/large-binary-keys.html and IndexedDB/large-string-keys.html perf tests failing
     4        https://bugs.webkit.org/show_bug.cgi?id=193956
     5        <rdar://problem/47623109>
     6
     7        Reviewed by Ryosuke Niwa.
     8
     9        r240358 sets default IDB quota as 50 MB for single test, we need to increase that for big tests.
     10
     11        * IndexedDB/large-binary-keys.html:
     12        * IndexedDB/large-string-keys.html:
     13
    1142019-01-18  Saam Barati  <sbarati@apple.com>
    215
  • trunk/PerformanceTests/IndexedDB/large-binary-keys.html

    r209499 r240767  
    77var iterationCount = 20;
    88var numberDeleted = 0;
     9
     10var quota = 500 * 1024 * 1024; //500MB
     11if (window.testRunner)
     12    testRunner.setIDBPerOriginQuota(quota);
    913
    1014// Delete all databases for the test ahead of time.
  • trunk/PerformanceTests/IndexedDB/large-string-keys.html

    r209499 r240767  
    77var iterationCount = 20;
    88var numberDeleted = 0;
     9
     10var quota = 500 * 1024 * 1024; //500MB
     11if (window.testRunner)
     12    testRunner.setIDBPerOriginQuota(quota);
    913
    1014// Delete all databases for the test ahead of time.
Note: See TracChangeset for help on using the changeset viewer.