diff options
Diffstat (limited to 'test/regress/recursion-issue.txt')
-rw-r--r-- | test/regress/recursion-issue.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/regress/recursion-issue.txt b/test/regress/recursion-issue.txt new file mode 100644 index 00000000..a5fa660b --- /dev/null +++ b/test/regress/recursion-issue.txt @@ -0,0 +1,20 @@ +;;; TOOL: run-interp-spec +;;; NOTE: ref: issue-2398 +(module + (type $out-i32 (func (result i32))) + + (table funcref + (elem + $runaway-with-return + ) + ) + + (func $runaway-with-return (export "runaway-with-return") (type $out-i32) + (call_indirect (type $out-i32) (i32.const 0)) + ) +) + +(assert_exhaustion (invoke "runaway-with-return") "call stack exhausted") +(;; STDOUT ;;; +2/2 tests passed. +;;; STDOUT ;;) |