Skip to content

Commit da38b00

Browse files
committed
Disable some tests in WasmGC
They make use of primitive Array coercion, which the WasmGC backend doesn't support yet
1 parent cbcdb84 commit da38b00

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

web-image/src/com.oracle.svm.hosted.webimage.test/src/com/oracle/svm/hosted/webimage/test/spec/JS_JTT_JSAnnotation.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ public void jsNumberTest() {
142142

143143
@Test
144144
public void jsStringTest() {
145+
// TODO GR-60603 Enable once JS annotation is supported in WasmGC
146+
Assume.assumeFalse(WebImageTestOptions.isWasmGCBackend());
145147
testFileAgainstNoBuild(JSStringTest.class.getName());
146148
}
147149

@@ -152,6 +154,8 @@ public void jsSymbolTest() {
152154

153155
@Test
154156
public void jsObjectTest() {
157+
// TODO GR-60603 Enable once JS annotation is supported in WasmGC
158+
Assume.assumeFalse(WebImageTestOptions.isWasmGCBackend());
155159
testFileAgainstNoBuild(JSObjectTest.class.getName());
156160
}
157161
}

0 commit comments

Comments
 (0)