diff options
author | Thomas Lively <tlively@google.com> | 2024-07-18 16:40:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-18 13:40:23 -0700 |
commit | 5a6eb1670762b1631d8236a32de38a3851183441 (patch) | |
tree | caa303526a91ad7e18909d054a5c946dc751805c /test/lit/validation | |
parent | 7b1ef0c9023368fffd1b6eb6771cab3690295fef (diff) | |
download | binaryen-5a6eb1670762b1631d8236a32de38a3851183441.tar.gz binaryen-5a6eb1670762b1631d8236a32de38a3851183441.tar.bz2 binaryen-5a6eb1670762b1631d8236a32de38a3851183441.zip |
Validate features for types used in element segments (#6769)
Diffstat (limited to 'test/lit/validation')
-rw-r--r-- | test/lit/validation/elem-type.wast | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/lit/validation/elem-type.wast b/test/lit/validation/elem-type.wast new file mode 100644 index 000000000..c98593aba --- /dev/null +++ b/test/lit/validation/elem-type.wast @@ -0,0 +1,12 @@ +;; Test that the features required by element segment types are checked + +;; RUN: not wasm-opt %s -all --disable-shared-everything 2>&1 | filecheck %s --check-prefix NO-SHARED +;; RUN: wasm-opt %s -all -S -o - | filecheck %s --check-prefix SHARED + +;; NO-SHARED: element segment type requires additional features +;; NO-SHARED: [--enable-shared-everything] +;; SHARED: (elem $e (ref null (shared func))) + +(module + (elem $e (ref null (shared func))) +) |