Changeset 265069 in webkit


Ignore:
Timestamp:
Jul 29, 2020 4:50:22 PM (4 years ago)
Author:
ysuzuki@apple.com
Message:

[JSC] Skip too heavy tests for Debug build
https://bugs.webkit.org/show_bug.cgi?id=214939

Reviewed by Mark Lam.

They are taking too much time in Debug build and cause timeout. We should skip them.

  • ChakraCore.yaml:
  • stress/codeblock-destructor-access-unlinkedcodeblock.js:
  • stress/dfg-to-string-on-string-object-does-not-gc.js:
  • stress/rest-parameter-many-arguments.js:
Location:
trunk/JSTests
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChakraCore.yaml

    r264873 r265069  
    10081008  cmd: runChakra :baseline, "NoException", "var.baseline-jsc", []
    10091009- path: ChakraCore/test/Object/Slow.js
    1010   cmd: runChakra :pass, "NoException", "", []
     1010  cmd: |
     1011      if $buildType == "debug"
     1012          skip
     1013      else
     1014          runChakra :pass, "NoException", "", []
     1015      end
    10111016- path: ChakraCore/test/Object/NumericPropertyIsEnumerable.js
    10121017  cmd: runChakra :baseline, "NoException", "NumericPropertyIsEnumerable.baseline", []
  • trunk/JSTests/ChangeLog

    r265065 r265069  
     12020-07-29  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        [JSC] Skip too heavy tests for Debug build
     4        https://bugs.webkit.org/show_bug.cgi?id=214939
     5
     6        Reviewed by Mark Lam.
     7
     8        They are taking too much time in Debug build and cause timeout. We should skip them.
     9
     10        * ChakraCore.yaml:
     11        * stress/codeblock-destructor-access-unlinkedcodeblock.js:
     12        * stress/dfg-to-string-on-string-object-does-not-gc.js:
     13        * stress/rest-parameter-many-arguments.js:
     14
    1152020-07-29  Tadeu Zagallo  <tzagallo@apple.com>
    216
  • trunk/JSTests/stress/codeblock-destructor-access-unlinkedcodeblock.js

    r264473 r265069  
    1 //@ skip if $memoryLimited
     1//@ skip if $memoryLimited || $buildType == "debug"
    22//@ runDefault("--returnEarlyFromInfiniteLoopsForFuzzing=1")
    33//@ slow!
  • trunk/JSTests/stress/dfg-to-string-on-string-object-does-not-gc.js

    r240616 r265069  
     1//@ skip if $buildType == "debug"
    12//@ requireOptions("--exceptionStackTraceLimit=0", "--defaultErrorStackTraceLimit=0", "--forceRAMSize=1000000", "--forceDebuggerBytecodeGeneration=1", "--useZombieMode=1", "--jitPolicyScale=0", "--collectContinuously=1", "--useConcurrentJIT=0")
    23
  • trunk/JSTests/stress/rest-parameter-many-arguments.js

    r249075 r265069  
    1 //@ skip if $architecture == "x86"
     1//@ skip if $architecture == "x86" || $buildType == "debug"
    22
    33function assert(b) {
Note: See TracChangeset for help on using the changeset viewer.