Changeset 209585 in webkit


Ignore:
Timestamp:
Dec 8, 2016, 5:21:15 PM (9 years ago)
Author:
fpizlo@apple.com
Message:

Make it easy to enable --force-collectContinuously
https://bugs.webkit.org/show_bug.cgi?id=165638

Reviewed by Keith Miller.

  • Scripts/run-javascriptcore-tests:

(runJSCStressTests):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r209579 r209585  
     12016-12-08  Filip Pizlo  <fpizlo@apple.com>
     2
     3        Make it easy to enable --force-collectContinuously
     4        https://bugs.webkit.org/show_bug.cgi?id=165638
     5
     6        Reviewed by Keith Miller.
     7
     8        * Scripts/run-javascriptcore-tests:
     9        (runJSCStressTests):
     10
    1112016-12-08  Filip Pizlo  <fpizlo@apple.com>
    212
  • trunk/Tools/Scripts/run-javascriptcore-tests

    r207363 r209585  
    6363my $runMozillaTests = 1;
    6464my $runQuickMode = 0;
     65my $forceCollectContinuously = 0;
    6566my $envVars = "";
    6667my $gmallocPath = undef;
     
    124125
    125126  --[no-]fail-fast              Stop this script when a test family reports an error or failure (default: $failFastDefault)
     127  --[no-]force-collectContinuously Enable the collectContinuously mode even if it was disabled on this platform.
    126128  --json-output=                Create a file at specified path, listing failed stress tests in JSON format.
    127129  --tarball                     Create a tarball of the bundle produced by running the JSC stress tests.
     
    159161    'quick!' => \$runQuickMode,
    160162    'fail-fast!' => \$failFast,
     163    'force-collectContinuously!' => \$forceCollectContinuously,
    161164    'json-output=s' => \$jsonFileName,
    162165    'tarball!' => \$createTarball,
     
    306309        push(@jscStressDriverCmd, "--debug");
    307310    }
     311   
     312    if ($forceCollectContinuously) {
     313        push(@jscStressDriverCmd, "--force-collectContinuously");
     314    }
    308315
    309316    if ($envVars ne "") {
Note: See TracChangeset for help on using the changeset viewer.