diff options
author | Alex Crichton <alex@alexcrichton.com> | 2020-05-06 13:46:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 11:46:43 -0700 |
commit | e88bc660cf89ca84dccda358cfbadc8a7c2bc935 (patch) | |
tree | f42df6241b90ebfb17e58a0fcae407b4687759b1 /test/parse/expr/bad-block-sig-multi.txt | |
parent | 9068d3927b404ce1e9c600473255a90504034eee (diff) | |
download | wabt-e88bc660cf89ca84dccda358cfbadc8a7c2bc935.tar.gz wabt-e88bc660cf89ca84dccda358cfbadc8a7c2bc935.tar.bz2 wabt-e88bc660cf89ca84dccda358cfbadc8a7c2bc935.zip |
Enabled merged proposals by default (#1405)
This enables three proposals by default since they've been merged into
the upstream specification:
* `saturating-float-to-int` - WebAssembly/spec#1143
* `sign-extension` - WebAssembly/spec#1144
* `multi-value` - WebAssembly/spec#1145
Most of the fallout from this is in the test suite with lots of
`--enable` flags getting removed and some tests which now
unconditionally pass also getting removed. Two spec tests explicitly
pass `--disable` until the spec test submodule is updated.
Diffstat (limited to 'test/parse/expr/bad-block-sig-multi.txt')
-rw-r--r-- | test/parse/expr/bad-block-sig-multi.txt | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/test/parse/expr/bad-block-sig-multi.txt b/test/parse/expr/bad-block-sig-multi.txt deleted file mode 100644 index 7abe50a3..00000000 --- a/test/parse/expr/bad-block-sig-multi.txt +++ /dev/null @@ -1,24 +0,0 @@ -;;; TOOL: wat2wasm -;;; ERROR: 1 -(module - (func - block (result i32 i32) - i32.const 1 - i32.const 1 - end - drop - drop) - - (func - i32.const 1 - block (param i32) - drop - end)) -(;; STDERR ;;; -out/test/parse/expr/bad-block-sig-multi.txt:5:5: error: multiple result values not currently supported. - block (result i32 i32) - ^^^^^ -out/test/parse/expr/bad-block-sig-multi.txt:14:5: error: block params not currently supported. - block (param i32) - ^^^^^ -;;; STDERR ;;) |