diff options
author | Thomas Lively <tlively@google.com> | 2024-01-08 11:46:30 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-08 11:46:30 -0800 |
commit | cc0fab918aed3643abdc3566ade3f70f06d1d954 (patch) | |
tree | 923fe1e125e7b4f95c2dfa20e4525f1c10a190f2 /test/ctor-eval/unsafe_store3.wast | |
parent | 82057de7666b84424f8d2bd90e941762e4e14f0e (diff) | |
download | binaryen-cc0fab918aed3643abdc3566ade3f70f06d1d954.tar.gz binaryen-cc0fab918aed3643abdc3566ade3f70f06d1d954.tar.bz2 binaryen-cc0fab918aed3643abdc3566ade3f70f06d1d954.zip |
Fix incorrect wat in tests (#6207)
The new wat parser is much more strict than the legacy wat parser; the latter
accepts all sorts of things that the spec does not allow. To ease an eventual
transition to using the new wat parser by default, update the tests to use the
standard text format in many places where they previously did not. We do not yet
have a way to prevent new errors from being introduced into the test suite, but
at least there will now be many fewer errors when it comes time to make the
switch.
Diffstat (limited to 'test/ctor-eval/unsafe_store3.wast')
-rw-r--r-- | test/ctor-eval/unsafe_store3.wast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ctor-eval/unsafe_store3.wast b/test/ctor-eval/unsafe_store3.wast index b8e7c662a..64e7a28c4 100644 --- a/test/ctor-eval/unsafe_store3.wast +++ b/test/ctor-eval/unsafe_store3.wast @@ -1,7 +1,7 @@ (module (memory 256 256) (data (i32.const 10) "waka waka waka waka waka") - (export "test1" $test1) + (export "test1" (func $test1)) (func $test1 (i32.store16 (i32.const 33) (i32.const 109)) ;; after last segment due to size of type ) |