Changeset 226222 in webkit


Ignore:
Timestamp:
Dec 21, 2017 7:43:56 AM (6 years ago)
Author:
guijemont@igalia.com
Message:

Skip slow jsc tests on embedded platforms
https://bugs.webkit.org/show_bug.cgi?id=180937

Reviewed by Carlos Alberto Lopez Perez.

The tests typeProfiler/deltablue-for-of.js and
typeProfiler/getter-richards.js take a very long time in the
ftl-no-cjit-type-profiler-force-poly-proto on embedded platform, and
thus always timeout. They should be skipped on these platforms.

  • typeProfiler/deltablue-for-of.js: Skip on arm*/mips.
  • typeProfiler/getter-richards.js: Skip on arm*/mips.
Location:
trunk/JSTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r226209 r226222  
     12017-12-21  Guillaume Emont  <guijemont@igalia.com>
     2
     3        Skip slow jsc tests on embedded platforms
     4        https://bugs.webkit.org/show_bug.cgi?id=180937
     5
     6        Reviewed by Carlos Alberto Lopez Perez.
     7
     8        The tests typeProfiler/deltablue-for-of.js and
     9        typeProfiler/getter-richards.js take a very long time in the
     10        ftl-no-cjit-type-profiler-force-poly-proto on embedded platform, and
     11        thus always timeout. They should be skipped on these platforms.
     12
     13        * typeProfiler/deltablue-for-of.js: Skip on arm*/mips.
     14        * typeProfiler/getter-richards.js: Skip on arm*/mips.
     15
    1162017-12-19  Yusuke Suzuki  <utatane.tea@gmail.com>
    217
  • trunk/JSTests/typeProfiler/deltablue-for-of.js

    r223214 r226222  
    1 //@ if $buildType == "debug" then skip else runTypeProfiler end
     1//@ if $buildType == "debug" or $architecture =~ /arm|mips/ then skip else runTypeProfiler end
    22
    33// Copyright 2008 the V8 project authors. All rights reserved.
  • trunk/JSTests/typeProfiler/getter-richards.js

    r223214 r226222  
    1 //@ if $buildType == "debug" then skip else runTypeProfiler end
     1//@ if $buildType == "debug" or $architecture =~ /arm|mips/ then skip else runTypeProfiler end
    22
    33// Copyright 2006-2008 the V8 project authors. All rights reserved.
Note: See TracChangeset for help on using the changeset viewer.