exception_handling.patch 613 B

1234567891011121314151617181920
  1. diff --git a/test/core/try_catch.wast b/test/core/try_catch.wast
  2. index 2a0e9ff6..f243489d 100644
  3. --- a/test/core/try_catch.wast
  4. +++ b/test/core/try_catch.wast
  5. @@ -203,7 +203,6 @@
  6. (assert_return (invoke "catch-param-i32" (i32.const 5)) (i32.const 5))
  7. -(assert_return (invoke "catch-imported") (i32.const 2))
  8. (assert_return (invoke "catchless-try" (i32.const 0)) (i32.const 0))
  9. (assert_return (invoke "catchless-try" (i32.const 1)) (i32.const 1))
  10. @@ -231,7 +230,6 @@
  11. )
  12. )
  13. -(assert_return (invoke "imported-mismatch") (i32.const 3))
  14. (assert_malformed
  15. (module quote "(module (func (catch_all)))")