diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-12-17 01:03:54 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-17 01:03:54 -0800 |
commit | fad92eaf2092efddf84da455d4af8431d5f87592 (patch) | |
tree | f28ba44a0284307689614b13ec90b3890fbf6c8d /test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.wast | |
parent | 48ccb2bb8a7d013abba4667dfc0fb46548bef2af (diff) | |
download | binaryen-fad92eaf2092efddf84da455d4af8431d5f87592.tar.gz binaryen-fad92eaf2092efddf84da455d4af8431d5f87592.tar.bz2 binaryen-fad92eaf2092efddf84da455d4af8431d5f87592.zip |
Fix misc. tests (#2534)
- Remove a function from memory-packing_all-features.wast, because it
does not test anything meaningful after #2529.
- Rename a test file to use `--all-features`; it started failing I guess
because `exnref` requires also reference type features, but not sure
why it was OK so far.
Diffstat (limited to 'test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.wast')
-rw-r--r-- | test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.wast | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.wast b/test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.wast deleted file mode 100644 index c355a2bf1..000000000 --- a/test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.wast +++ /dev/null @@ -1,19 +0,0 @@ -(module - (event $e0 (attr 0) (param i32)) - - (func $eh (local $exn exnref) - (try - (throw $e0 (i32.const 0)) - (catch - (local.set $exn (exnref.pop)) - (drop - (block $l0 (result i32) - (rethrow - (br_on_exn $l0 $e0 (local.get $exn)) - ) - ) - ) - ) - ) - ) -) |