Title: [293312] trunk/JSTests
Revision
293312
Author
z...@falconsigh.net
Date
2022-04-24 23:26:33 -0700 (Sun, 24 Apr 2022)

Log 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:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (293311 => 293312)


--- trunk/JSTests/ChangeLog	2022-04-25 06:02:41 UTC (rev 293311)
+++ trunk/JSTests/ChangeLog	2022-04-25 06:26:33 UTC (rev 293312)
@@ -1,3 +1,19 @@
+2022-04-24  Zan Dobersek  <zdober...@igalia.com>
+
+        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:
+
 2022-04-21  Yusuke Suzuki  <ysuz...@apple.com>
 
         [JSC] PropertyTable should have compact mode

Modified: trunk/JSTests/microbenchmarks/memcpy-wasm-large.js (293311 => 293312)


--- trunk/JSTests/microbenchmarks/memcpy-wasm-large.js	2022-04-25 06:02:41 UTC (rev 293311)
+++ trunk/JSTests/microbenchmarks/memcpy-wasm-large.js	2022-04-25 06:26:33 UTC (rev 293312)
@@ -1,4 +1,5 @@
 //@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
+//@ skip if !$isFTLPlatform
 //@ requireOptions("--useExecutableAllocationFuzz=false")
 // Source in wasm/stress/memcpy-wasm
 if (typeof WebAssembly === "object") {

Modified: trunk/JSTests/microbenchmarks/memcpy-wasm-medium.js (293311 => 293312)


--- trunk/JSTests/microbenchmarks/memcpy-wasm-medium.js	2022-04-25 06:02:41 UTC (rev 293311)
+++ trunk/JSTests/microbenchmarks/memcpy-wasm-medium.js	2022-04-25 06:26:33 UTC (rev 293312)
@@ -1,4 +1,5 @@
 //@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
+//@ skip if !$isFTLPlatform
 //@ requireOptions("--useExecutableAllocationFuzz=false")
 // Source in wasm/stress/memcpy-wasm
 

Modified: trunk/JSTests/microbenchmarks/memcpy-wasm-small.js (293311 => 293312)


--- trunk/JSTests/microbenchmarks/memcpy-wasm-small.js	2022-04-25 06:02:41 UTC (rev 293311)
+++ trunk/JSTests/microbenchmarks/memcpy-wasm-small.js	2022-04-25 06:26:33 UTC (rev 293312)
@@ -1,4 +1,5 @@
 //@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
+//@ skip if !$isFTLPlatform
 //@ requireOptions("--useExecutableAllocationFuzz=false")
 // Source in wasm/stress/memcpy-wasm
 if (typeof WebAssembly === "object") {

Modified: trunk/JSTests/microbenchmarks/memcpy-wasm.js (293311 => 293312)


--- trunk/JSTests/microbenchmarks/memcpy-wasm.js	2022-04-25 06:02:41 UTC (rev 293311)
+++ trunk/JSTests/microbenchmarks/memcpy-wasm.js	2022-04-25 06:26:33 UTC (rev 293312)
@@ -1,4 +1,5 @@
 //@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
+//@ skip if !$isFTLPlatform
 //@ requireOptions("--useExecutableAllocationFuzz=false")
 // Source in wasm/stress/memcpy-wasm
 if (typeof WebAssembly === "object") {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to