⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 293312 in webkit


Ignore:
Timestamp:
Apr 24, 2022, 11:26:33 PM (4 years ago)
Author:
zan@falconsigh.net
Message:

Skip microbenchmarks/memcpy-wasm.js and friends on non-FTL (i.e. non-WASM) platforms
https://bugs.webkit.org/show_bug.cgi?id=239705

Reviewed by Yusuke Suzuki.

Mark microbenchmarks/memcpy-wasm.js and related tests as skipped on
non-FTL platforms since WASM tests are not run there, resulting in
failures when they're executed.

  • microbenchmarks/memcpy-wasm-large.js:
  • microbenchmarks/memcpy-wasm-medium.js:
  • microbenchmarks/memcpy-wasm-small.js:
  • microbenchmarks/memcpy-wasm.js:
Location:
trunk/JSTests
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r293210 r293312  
     12022-04-24  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Skip microbenchmarks/memcpy-wasm.js and friends on non-FTL (i.e. non-WASM) platforms
     4        https://bugs.webkit.org/show_bug.cgi?id=239705
     5
     6        Reviewed by Yusuke Suzuki.
     7
     8        Mark microbenchmarks/memcpy-wasm.js and related tests as skipped on
     9        non-FTL platforms since WASM tests are not run there, resulting in
     10        failures when they're executed.
     11
     12        * microbenchmarks/memcpy-wasm-large.js:
     13        * microbenchmarks/memcpy-wasm-medium.js:
     14        * microbenchmarks/memcpy-wasm-small.js:
     15        * microbenchmarks/memcpy-wasm.js:
     16
    1172022-04-21  Yusuke Suzuki  <ysuzuki@apple.com>
    218
  • trunk/JSTests/microbenchmarks/memcpy-wasm-large.js

    r279126 r293312  
    11//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
     2//@ skip if !$isFTLPlatform
    23//@ requireOptions("--useExecutableAllocationFuzz=false")
    34// Source in wasm/stress/memcpy-wasm
  • trunk/JSTests/microbenchmarks/memcpy-wasm-medium.js

    r279126 r293312  
    11//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
     2//@ skip if !$isFTLPlatform
    23//@ requireOptions("--useExecutableAllocationFuzz=false")
    34// Source in wasm/stress/memcpy-wasm
  • trunk/JSTests/microbenchmarks/memcpy-wasm-small.js

    r279126 r293312  
    11//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
     2//@ skip if !$isFTLPlatform
    23//@ requireOptions("--useExecutableAllocationFuzz=false")
    34// Source in wasm/stress/memcpy-wasm
  • trunk/JSTests/microbenchmarks/memcpy-wasm.js

    r279126 r293312  
    11//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
     2//@ skip if !$isFTLPlatform
    23//@ requireOptions("--useExecutableAllocationFuzz=false")
    34// Source in wasm/stress/memcpy-wasm
Note: See TracChangeset for help on using the changeset viewer.