summaryrefslogtreecommitdiff
path: root/test/unit
diff options
context:
space:
mode:
authorWouter van Oortmerssen <aardappel@gmail.com>2020-09-18 15:50:25 -0700
committerGitHub <noreply@github.com>2020-09-18 15:50:25 -0700
commit3b4cb935f83c7fabacbf61146e56dabc0d65a441 (patch)
tree9aaac74aad59fe2ff2b00ac6e6a77bb808b01747 /test/unit
parent1a928bc3ff4b511e81b3f93db8aea872e88abaaf (diff)
downloadbinaryen-3b4cb935f83c7fabacbf61146e56dabc0d65a441.tar.gz
binaryen-3b4cb935f83c7fabacbf61146e56dabc0d65a441.tar.bz2
binaryen-3b4cb935f83c7fabacbf61146e56dabc0d65a441.zip
Initial implementation of "Memory64" proposal (#3130)
Also includes a lot of new spec tests that eventually need to go into the spec repo
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/test_features.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit/test_features.py b/test/unit/test_features.py
index dca3d33b9..4a82f8cc2 100644
--- a/test/unit/test_features.py
+++ b/test/unit/test_features.py
@@ -387,5 +387,6 @@ class TargetFeaturesSectionTest(utils.BinaryenTestCase):
'--enable-tail-call',
'--enable-reference-types',
'--enable-multivalue',
- '--enable-gc'
+ '--enable-gc',
+ '--enable-memory64'
], p2.stdout.splitlines())