Changeset 229057 in webkit


Ignore:
Timestamp:
Feb 27, 2018 1:36:28 AM (6 years ago)
Author:
Yusuke Suzuki
Message:

Unreviewed, skip FTL tests if FTL is disabled
https://bugs.webkit.org/show_bug.cgi?id=183071

JSTests:

  • stress/has-indexed-property-array-storage-ftl.js:
  • stress/has-indexed-property-slow-put-array-storage-ftl.js:

Tools:

  • Scripts/run-jsc-stress-tests:
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r229053 r229057  
     12018-02-27  Yusuke Suzuki  <utatane.tea@gmail.com>
     2
     3        Unreviewed, skip FTL tests if FTL is disabled
     4        https://bugs.webkit.org/show_bug.cgi?id=183071
     5
     6        * stress/has-indexed-property-array-storage-ftl.js:
     7        * stress/has-indexed-property-slow-put-array-storage-ftl.js:
     8
    192018-02-25  Yusuke Suzuki  <utatane.tea@gmail.com>
    210
  • trunk/JSTests/stress/has-indexed-property-array-storage-ftl.js

    r228986 r229057  
    1 //@ if $isFTLPlatform then runFTLNoCJIT else skip end
     1//@ if isFTLEnabled then runFTLNoCJIT else skip end
    22
    33function shouldBe(actual, expected) {
  • trunk/JSTests/stress/has-indexed-property-slow-put-array-storage-ftl.js

    r228986 r229057  
    1 //@ if $isFTLPlatform then runFTLNoCJIT else skip end
     1//@ if isFTLEnabled then runFTLNoCJIT else skip end
    22
    33function shouldBe(actual, expected) {
  • trunk/Tools/ChangeLog

    r229048 r229057  
     12018-02-27  Yusuke Suzuki  <utatane.tea@gmail.com>
     2
     3        Unreviewed, skip FTL tests if FTL is disabled
     4        https://bugs.webkit.org/show_bug.cgi?id=183071
     5
     6        * Scripts/run-jsc-stress-tests:
     7
    182018-02-26  Don Olmstead  <don.olmstead@sony.com>
    29
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r228512 r229057  
    434434$isFTLPlatform = !($architecture == "x86" || $architecture == "arm" || $architecture == "mips" || $hostOS == "windows")
    435435
     436def isFTLEnabled
     437    $jitTests && $isFTLPlatform
     438end
     439
    436440if !$testRunnerType
    437441    if $remote and $hostOS == "darwin"
Note: See TracChangeset for help on using the changeset viewer.