Changeset 215195 in webkit


Ignore:
Timestamp:
Apr 10, 2017, 12:01:57 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

[JSC] Do not run FTL stress tests on MIPS
https://bugs.webkit.org/show_bug.cgi?id=170684

Patch by Guillaume Emont <guijemont@igalia.com> on 2017-04-10
Reviewed by Carlos Alberto Lopez Perez.

run-jsc-stress-tests does not correctly detect MIPS platforms, and its
logic to detect if the platform supports FTL ignores that MIPS does
not support FTL. This adds detection of MIPS (with the magic number
determined empirically) and fixes the determination of whether we
support FTL.

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

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r215191 r215195  
     12017-04-10  Guillaume Emont  <guijemont@igalia.com>
     2
     3        [JSC] Do not run FTL stress tests on MIPS
     4        https://bugs.webkit.org/show_bug.cgi?id=170684
     5
     6        Reviewed by Carlos Alberto Lopez Perez.
     7
     8        run-jsc-stress-tests does not correctly detect MIPS platforms, and its
     9        logic to detect if the platform supports FTL ignores that MIPS does
     10        not support FTL. This adds detection of MIPS (with the magic number
     11        determined empirically) and fixes the determination of whether we
     12        support FTL.
     13
     14        * Scripts/run-jsc-stress-tests:
     15
    1162017-04-10  Jonathan Bedard  <jbedard@apple.com>
    217
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r214985 r215195  
    341341    when 3
    342342        "x86"
     343    when 8
     344        "mips"
    343345    when 62
    344346        "x86-64"
     
    412414$hostOS = determineOS unless $hostOS
    413415$architecture = determineArchitecture unless $architecture
    414 $isFTLPlatform = !($architecture == "x86" || $architecture == "arm" || $hostOS == "windows" || $hostOS == "linux" && $architecture == "arm64")
     416$isFTLPlatform = !($architecture == "x86" || $architecture == "arm" || $architecture == "mips" || $hostOS == "windows" || $hostOS == "linux" && $architecture == "arm64")
    415417
    416418if !$testRunnerType
Note: See TracChangeset for help on using the changeset viewer.