diff options
author | Yuhan Deng <31569419+yhdengh@users.noreply.github.com> | 2021-11-30 14:04:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-30 22:04:40 +0000 |
commit | cf1e138ba9cde79d51f56d873e10b7ac9e4481b1 (patch) | |
tree | 22451a2d589797e4fd3c653e90ab7859234b38d0 /test/update-spec-tests.py | |
parent | f65fadeedff3458e1dd9c157553cd0ed891683dd (diff) | |
download | wabt-cf1e138ba9cde79d51f56d873e10b7ac9e4481b1.tar.gz wabt-cf1e138ba9cde79d51f56d873e10b7ac9e4481b1.tar.bz2 wabt-cf1e138ba9cde79d51f56d873e10b7ac9e4481b1.zip |
Add multi-memory feature support (#1751)
Diffstat (limited to 'test/update-spec-tests.py')
-rwxr-xr-x | test/update-spec-tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/update-spec-tests.py b/test/update-spec-tests.py index e40ae114..44eecc06 100755 --- a/test/update-spec-tests.py +++ b/test/update-spec-tests.py @@ -89,14 +89,14 @@ def main(args): all_proposals = [e.name for e in os.scandir(PROPOSALS_DIR) if e.is_dir()] flags = { - 'memory64': '--enable-memory64' + 'memory64': '--enable-memory64', + 'multi-memory': '--enable-multi-memory' } unimplemented = set([ 'gc', 'tail-call', 'function-references', - 'multi-memory', 'threads', 'annotations', 'exception-handling', |