diff options
author | Alon Zakai <alonzakai@gmail.com> | 2019-04-03 17:49:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-03 17:49:47 -0700 |
commit | 773759f7842611bbe3e30f7b9d4cd24350291976 (patch) | |
tree | a2ac1d3b7e1850b3827b087f671c6182b39429b2 /test/unit/test_features.py | |
parent | 02198da745469104cb6ced60b37efa8d8a7f4464 (diff) | |
download | binaryen-773759f7842611bbe3e30f7b9d4cd24350291976.tar.gz binaryen-773759f7842611bbe3e30f7b9d4cd24350291976.tar.bz2 binaryen-773759f7842611bbe3e30f7b9d4cd24350291976.zip |
Update test/spec/memory.wast to latest upstream (#1801)
Minus multi-memory which we don't support yet.
Improve validator.
Fix some minor validation issues in our tests.
Diffstat (limited to 'test/unit/test_features.py')
-rw-r--r-- | test/unit/test_features.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/unit/test_features.py b/test/unit/test_features.py index 9f9f618b0..f939025e0 100644 --- a/test/unit/test_features.py +++ b/test/unit/test_features.py @@ -60,6 +60,7 @@ class FeatureValidationTest(unittest.TestCase): def test_simd_load(self): module = """ (module + (memory 1 1) (func $foo (drop (v128.load (i32.const 0))) ) |