Changeset 209585 in webkit
- Timestamp:
- Dec 8, 2016, 5:21:15 PM (9 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r209579 r209585 1 2016-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 1 11 2016-12-08 Filip Pizlo <fpizlo@apple.com> 2 12 -
trunk/Tools/Scripts/run-javascriptcore-tests
r207363 r209585 63 63 my $runMozillaTests = 1; 64 64 my $runQuickMode = 0; 65 my $forceCollectContinuously = 0; 65 66 my $envVars = ""; 66 67 my $gmallocPath = undef; … … 124 125 125 126 --[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. 126 128 --json-output= Create a file at specified path, listing failed stress tests in JSON format. 127 129 --tarball Create a tarball of the bundle produced by running the JSC stress tests. … … 159 161 'quick!' => \$runQuickMode, 160 162 'fail-fast!' => \$failFast, 163 'force-collectContinuously!' => \$forceCollectContinuously, 161 164 'json-output=s' => \$jsonFileName, 162 165 'tarball!' => \$createTarball, … … 306 309 push(@jscStressDriverCmd, "--debug"); 307 310 } 311 312 if ($forceCollectContinuously) { 313 push(@jscStressDriverCmd, "--force-collectContinuously"); 314 } 308 315 309 316 if ($envVars ne "") {
Note:
See TracChangeset
for help on using the changeset viewer.