diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/interp/basic-logging.txt | 1 | ||||
-rw-r--r-- | test/regress/interp-ehv3-locals.txt | 18 |
2 files changed, 16 insertions, 3 deletions
diff --git a/test/interp/basic-logging.txt b/test/interp/basic-logging.txt index d175d1c4..f62baea6 100644 --- a/test/interp/basic-logging.txt +++ b/test/interp/basic-logging.txt @@ -62,6 +62,7 @@ BeginModule(version: 1) OnFunctionBodyCount(1) BeginFunctionBody(0, size:5) OnLocalDeclCount(0) + EndLocalDecls OnI32ConstExpr(42 (0x2a)) OnReturnExpr OnEndExpr diff --git a/test/regress/interp-ehv3-locals.txt b/test/regress/interp-ehv3-locals.txt index e4f05c83..316563ab 100644 --- a/test/regress/interp-ehv3-locals.txt +++ b/test/regress/interp-ehv3-locals.txt @@ -3,7 +3,7 @@ ;;; NOTE: ref: issue-2476 (module (tag $e0) - (func (export "broken-local") (result i32) + (func (export "set-local") (result i32) (local $value i32) (try $try (do @@ -14,9 +14,21 @@ ) (local.get $value) ) + (func (export "multiple-locals") (result i32) + (local $a i32) + (local $b i32) + (try $try + (do + (throw $e0) + ) + (catch $e0) + ) + (local.get $a) + ) ) -(assert_return (invoke "broken-local") (i32.const 1)) +(assert_return (invoke "set-local") (i32.const 1)) +(assert_return (invoke "multiple-locals") (i32.const 0)) (;; STDOUT ;;; -2/2 tests passed. +3/3 tests passed. ;;; STDOUT ;;) |