diff options
author | Shravan Narayan <shravanrn@gmail.com> | 2023-05-11 15:13:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-11 19:13:15 +0000 |
commit | 0520f3776387b592b072795328a33eddf06e7c4d (patch) | |
tree | 40a9a35555a321804f157fb72a1b3fae52c3f42f /test | |
parent | 7ff04217d72d5c9528c9f167913c52f083ef1948 (diff) | |
download | wabt-0520f3776387b592b072795328a33eddf06e7c4d.tar.gz wabt-0520f3776387b592b072795328a33eddf06e7c4d.tar.bz2 wabt-0520f3776387b592b072795328a33eddf06e7c4d.zip |
wasm2c: Fix typo in testing harness (#2234)
Diffstat (limited to 'test')
-rwxr-xr-x | test/run-spec-wasm2c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run-spec-wasm2c.py b/test/run-spec-wasm2c.py index d604f653..660fae04 100755 --- a/test/run-spec-wasm2c.py +++ b/test/run-spec-wasm2c.py @@ -550,7 +550,7 @@ def main(args): '-v': options.verbose, '--enable-exceptions': options.enable_exceptions, '--enable-memory64': options.enable_memory64, - '--enable-extended-const': options.enable_memory64, + '--enable-extended-const': options.enable_extended_const, '--enable-multi-memory': options.enable_multi_memory, '--disable-bulk-memory': options.disable_bulk_memory, '--disable-reference-types': options.disable_reference_types, |