diff options
author | Ben Smith <binji@chromium.org> | 2016-09-26 17:03:05 -0700 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2016-09-29 11:37:27 -0700 |
commit | 1133575d48958ef6cd483e7ecef0ed1001d3ae57 (patch) | |
tree | 3189025965fec901ffb4ee4ae44c17fac8c51e63 /test/interp/return.txt | |
parent | c92a909563d12f81d382df8428d5e4e0e2ee91fc (diff) | |
download | wabt-1133575d48958ef6cd483e7ecef0ed1001d3ae57.tar.gz wabt-1133575d48958ef6cd483e7ecef0ed1001d3ae57.tar.bz2 wabt-1133575d48958ef6cd483e7ecef0ed1001d3ae57.zip |
fix most of the interp tests
Still need to do imports
Diffstat (limited to 'test/interp/return.txt')
-rw-r--r-- | test/interp/return.txt | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/test/interp/return.txt b/test/interp/return.txt index 0f514148..37c4a32b 100644 --- a/test/interp/return.txt +++ b/test/interp/return.txt @@ -9,17 +9,14 @@ (return (i32.const 3))) - (func $test1 (result i32) + (func (export "test1") (result i32) (call $f (i32.const 0))) - (export "test1" $test1) - (func $test2 (result i32) + (func (export "test2") (result i32) (call $f (i32.const 1))) - (export "test2" $test2) - (func $test3 (result i32) - (call $f (i32.const 5))) - (export "test3" $test3)) + (func (export "test3") (result i32) + (call $f (i32.const 5)))) (;; STDOUT ;;; test1() => i32:1 test2() => i32:2 |