From fad92eaf2092efddf84da455d4af8431d5f87592 Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Tue, 17 Dec 2019 01:03:54 -0800 Subject: 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. --- ...k-ir_print-stack-ir_enable-exception-handling.wast | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.wast (limited to 'test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.wast') 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)) - ) - ) - ) - ) - ) - ) -) -- cgit v1.2.3