Changeset 237696 in webkit


Ignore:
Timestamp:
Nov 1, 2018 12:49:03 PM (5 years ago)
Author:
guijemont@igalia.com
Message:

Skip tests on arm/mips that time out now we're running on CLoop

Unreviewed gardening.

Since the JIT is temporarily disabled on 32-bit platforms, these tests
time out on the bots and need to be disabled. There's more tests
disabled on arm because the timeout is longer on the mips bot (as the
device is slower to start with), so many of the tests don't time out
there.

JSTests:

  • microbenchmarks/getter-richards.js: disable on arm and mips.
  • stress/op_add.js: disable on arm.
  • stress/op_bitand.js: disable on arm.
  • stress/op_bitor.js: disable on arm.
  • stress/op_bitxor.js: disable on arm.
  • stress/op_lshift-ConstVar.js: disable on arm.
  • stress/op_lshift-VarConst.js: disable on arm.
  • stress/op_lshift-VarVar.js: disable on arm.
  • stress/op_mod-ConstVar.js: disable on arm.
  • stress/op_mod-VarConst.js: disable on arm.
  • stress/op_mod-VarVar.js: disable on arm.
  • stress/op_mul-ConstVar.js: disable on arm.
  • stress/op_mul-VarConst.js: disable on arm.
  • stress/op_mul-VarVar.js: disable on arm.
  • stress/op_rshift-ConstVar.js: disable on arm.
  • stress/op_rshift-VarConst.js: disable on arm.
  • stress/op_rshift-VarVar.js: disable on arm.
  • stress/op_sub-ConstVar.js: disable on arm.
  • stress/op_sub-VarConst.js: disable on arm.
  • stress/op_sub-VarVar.js: disable on arm.
  • stress/op_urshift-ConstVar.js: disable on arm.
  • stress/op_urshift-VarConst.js: disable on arm.
  • stress/op_urshift-VarVar.js: disable on arm.
  • stress/spread-forward-call-varargs-stack-overflow.js: disable on arm.
  • stress/value-to-boolean.js: disable on arm and mips.

LayoutTests:

  • js/script-tests/regress-139548.js: disable on arm and mips.
Location:
trunk
Files:
28 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r237641 r237696  
     12018-11-01  Guillaume Emont  <guijemont@igalia.com>
     2
     3        Skip tests on arm/mips that time out now we're running on CLoop
     4
     5        Unreviewed gardening.
     6
     7        Since the JIT is temporarily disabled on 32-bit platforms, these tests
     8        time out on the bots and need to be disabled. There's more tests
     9        disabled on arm because the timeout is longer on the mips bot (as the
     10        device is slower to start with), so many of the tests don't time out
     11        there.
     12
     13        * microbenchmarks/getter-richards.js: disable on arm and mips.
     14        * stress/op_add.js: disable on arm.
     15        * stress/op_bitand.js: disable on arm.
     16        * stress/op_bitor.js: disable on arm.
     17        * stress/op_bitxor.js: disable on arm.
     18        * stress/op_lshift-ConstVar.js: disable on arm.
     19        * stress/op_lshift-VarConst.js: disable on arm.
     20        * stress/op_lshift-VarVar.js: disable on arm.
     21        * stress/op_mod-ConstVar.js: disable on arm.
     22        * stress/op_mod-VarConst.js: disable on arm.
     23        * stress/op_mod-VarVar.js: disable on arm.
     24        * stress/op_mul-ConstVar.js: disable on arm.
     25        * stress/op_mul-VarConst.js: disable on arm.
     26        * stress/op_mul-VarVar.js: disable on arm.
     27        * stress/op_rshift-ConstVar.js: disable on arm.
     28        * stress/op_rshift-VarConst.js: disable on arm.
     29        * stress/op_rshift-VarVar.js: disable on arm.
     30        * stress/op_sub-ConstVar.js: disable on arm.
     31        * stress/op_sub-VarConst.js: disable on arm.
     32        * stress/op_sub-VarVar.js: disable on arm.
     33        * stress/op_urshift-ConstVar.js: disable on arm.
     34        * stress/op_urshift-VarConst.js: disable on arm.
     35        * stress/op_urshift-VarVar.js: disable on arm.
     36        * stress/spread-forward-call-varargs-stack-overflow.js: disable on arm.
     37        * stress/value-to-boolean.js: disable on arm and mips.
     38
    1392018-10-31  Tadeu Zagallo  <tzagallo@apple.com>
    240
  • trunk/JSTests/microbenchmarks/getter-richards.js

    r171429 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "mips" or $architecture == "arm"
    14//@ defaultQuickRun
    25
  • trunk/JSTests/stress/op_add.js

    r192664 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_bitand.js

    r193471 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_bitor.js

    r193471 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_bitxor.js

    r193471 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_lshift-ConstVar.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_lshift-VarConst.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_lshift-VarVar.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_mod-ConstVar.js

    r222009 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT("--timeoutMultiplier=1.5")
    25
  • trunk/JSTests/stress/op_mod-VarConst.js

    r222009 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT("--timeoutMultiplier=1.5")
    25
  • trunk/JSTests/stress/op_mod-VarVar.js

    r222009 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT("--timeoutMultiplier=1.5")
    25
  • trunk/JSTests/stress/op_mul-ConstVar.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_mul-VarConst.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_mul-VarVar.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_rshift-ConstVar.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_rshift-VarConst.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_rshift-VarVar.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_sub-ConstVar.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_sub-VarConst.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_sub-VarVar.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_urshift-ConstVar.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_urshift-VarConst.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/op_urshift-VarVar.js

    r206600 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ runFTLNoCJIT
    25
  • trunk/JSTests/stress/spread-forward-call-varargs-stack-overflow.js

    r232525 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "arm"
    14//@ skip if $architecture == "x86"
    25function assert(b) {
  • trunk/JSTests/stress/value-to-boolean.js

    r221919 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "mips" or $architecture == "arm"
    14//@ if $buildType == "release" then runDefault else skip end
    25
  • trunk/LayoutTests/ChangeLog

    r237694 r237696  
     12018-11-01  Guillaume Emont  <guijemont@igalia.com>
     2
     3        Skip tests on arm/mips that time out now we're running on CLoop
     4
     5        Unreviewed gardening.
     6
     7        Since the JIT is temporarily disabled on 32-bit platforms, these tests
     8        time out on the bots and need to be disabled. There's more tests
     9        disabled on arm because the timeout is longer on the mips bot (as the
     10        device is slower to start with), so many of the tests don't time out
     11        there.
     12
     13        * js/script-tests/regress-139548.js: disable on arm and mips.
     14
    1152018-11-01  Devin Rousso  <drousso@apple.com>
    216
  • trunk/LayoutTests/js/script-tests/regress-139548.js

    r210497 r237696  
     1// FIXME: unskip when this is solved
     2// https://bugs.webkit.org/show_bug.cgi?id=191163
     3//@ skip if $architecture == "mips" or $architecture == "arm"
    14//@ slow!
    25//@ noEagerNoNoLLIntTestsRunLayoutTest
Note: See TracChangeset for help on using the changeset viewer.