summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/gc/final_types.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /js/src/jit-test/tests/wasm/gc/final_types.js
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/jit-test/tests/wasm/gc/final_types.js')
-rw-r--r--js/src/jit-test/tests/wasm/gc/final_types.js48
1 files changed, 48 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/wasm/gc/final_types.js b/js/src/jit-test/tests/wasm/gc/final_types.js
new file mode 100644
index 0000000000..7787a1d3bb
--- /dev/null
+++ b/js/src/jit-test/tests/wasm/gc/final_types.js
@@ -0,0 +1,48 @@
+// |jit-test| skip-if: !wasmGcEnabled()
+
+// Validate that incorrect subtyping examples are failing as expected
+const typeError = /incompatible super type/;
+
+var code =`
+(module
+ (type $A (sub (struct (field i32))))
+ (type $B (sub $A (struct (field i32) (field i32))))
+ (type $C (sub $B (struct (field i32) (field i32) (field i64))))
+
+ ;; Can't declare a super type with the final flag
+ (type $D (sub final $C (struct (field i32) (field i32) (field f32))))
+ (type $E (sub $D (struct (field i32) (field i32) (field f32))))
+)`;
+
+wasmFailValidateText(code, typeError);
+
+code =`
+(module
+ (type $A (sub (struct (field i32))))
+ (type $B (sub $A (struct (field i32) (field i32))))
+ (type $C (sub $B (struct (field i32) (field i32))))
+
+ ;; $D is final, without any supertype
+ (type $D (sub final (struct (field i32) (field i32) (field f32))))
+ (type $E (sub $D (struct (field i32) (field i32) (field f32))))
+)`;
+
+wasmFailValidateText(code, typeError);
+
+// Types are final by default.
+code =`
+(module
+ (type $A (struct (field i32)))
+ (type $B (sub $A (struct (field i32) (field i32))))
+)`;
+
+wasmFailValidateText(code, typeError);
+
+// A super type index must be stricly less than the current type.
+code =`
+(module
+ (type $A (sub (struct (field i32))))
+ (type $B (sub $B (struct (field i32) (field i32))))
+)`;
+
+wasmFailValidateText(code, /invalid super type index/);