Changeset 201158 in webkit


Ignore:
Timestamp:
May 19, 2016 5:03:16 AM (8 years ago)
Author:
Csaba Osztrogonác
Message:

Slow JSC stress tests times out in 32 bit debug mode
https://bugs.webkit.org/show_bug.cgi?id=154964

Reviewed by Michael Catanzaro.

  • Scripts/run-javascriptcore-tests:

(runJSCStressTests): Pass through the --debug option.

  • Scripts/run-jsc-stress-tests: Increase the timeout for debug builds.
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r201117 r201158  
     12016-05-19  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Slow JSC stress tests times out in 32 bit debug mode
     4        https://bugs.webkit.org/show_bug.cgi?id=154964
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * Scripts/run-javascriptcore-tests:
     9        (runJSCStressTests): Pass through the --debug option.
     10        * Scripts/run-jsc-stress-tests: Increase the timeout for debug builds.
     11
    1122016-05-18  Aakash Jain  <aakash_jain@apple.com>
    213
  • trunk/Tools/Scripts/run-javascriptcore-tests

    r200956 r201158  
    266266    }
    267267
     268    if (configuration() eq "Debug") {
     269        push(@jscStressDriverCmd, "--debug");
     270    }
     271
    268272    if ($envVars ne "") {
    269273            push(@jscStressDriverCmd, "--env-vars");
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r201105 r201158  
    20132013end
    20142014
    2015 if $enableFTL and ENV["JSCTEST_timeout"]
     2015if $enableFTL and ENV["JSCTEST_timeout"] or !ifJSCArgIsntProvidedAreWeReleaseBuild
    20162016    # Currently, using the FTL is a performance regression particularly in real
    20172017    # (i.e. non-loopy) benchmarks. Account for this in the timeout.
     2018    # Increase the timeout for debug builds too. (--debug command line option)
    20182019    ENV["JSCTEST_timeout"] = (ENV["JSCTEST_timeout"].to_i * 2).to_s
    20192020end
Note: See TracChangeset for help on using the changeset viewer.