⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 155489 in webkit


Ignore:
Timestamp:
Sep 10, 2013, 4:15:27 PM (13 years ago)
Author:
mhahnenberg@apple.com
Message:

run-jsc-stress-tests should have a mode for always running the copy phase
https://bugs.webkit.org/show_bug.cgi?id=121128

Reviewed by Geoffrey Garen.

This will increase test coverage of the copying phase, which might not always get
triggered normally with our default parameters for required Heap/CopiedBlock utilization.

  • Scripts/run-jsc-stress-tests:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r155481 r155489  
     12013-09-10  Mark Hahnenberg  <mhahnenberg@apple.com>
     2
     3        run-jsc-stress-tests should have a mode for always running the copy phase
     4        https://bugs.webkit.org/show_bug.cgi?id=121128
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        This will increase test coverage of the copying phase, which might not always get
     9        triggered normally with our default parameters for required Heap/CopiedBlock utilization.
     10
     11        * Scripts/run-jsc-stress-tests:
     12
    1132013-09-10  Sergio Correia  <sergio.correia@openbossa.org>
    214
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r155467 r155489  
    207207end
    208208
     209def runAlwaysTriggerCopyPhase
     210    run("always-trigger-copy-phase", "--minHeapUtilization=2.0", "--minCopiedBlockUtilization=2.0")
     211end
     212
    209213def defaultRun
    210214    runDefault
     215    runAlwaysTriggerCopyPhase
    211216    runNoCJIT
    212217    if $enableFTL
Note: See TracChangeset for help on using the changeset viewer.