diff options
author | Kwadwo 'Que' Amankwa <jofreezy@hotmail.co.uk> | 2016-10-20 21:42:01 +0100 |
---|---|---|
committer | Ben Smith <binjimin@gmail.com> | 2016-10-20 13:42:01 -0700 |
commit | 7d8c366a9baddadfd655f1cd33748883cf11563c (patch) | |
tree | f984a2290e9a9f15fd1d1a8879c255f6830b271a /test/interp/basic.txt | |
parent | ad1f5093d33b986967ff3972eb81590ba292538b (diff) | |
download | wabt-7d8c366a9baddadfd655f1cd33748883cf11563c.tar.gz wabt-7d8c366a9baddadfd655f1cd33748883cf11563c.tar.bz2 wabt-7d8c366a9baddadfd655f1cd33748883cf11563c.zip |
Update tests syntax to new flat syntax (#174)
converted another batch
Diffstat (limited to 'test/interp/basic.txt')
-rw-r--r-- | test/interp/basic.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/interp/basic.txt b/test/interp/basic.txt index 19a07b1b..13ae2c0e 100644 --- a/test/interp/basic.txt +++ b/test/interp/basic.txt @@ -1,7 +1,8 @@ ;;; TOOL: run-interp (module (func (export "main") (result i32) - (return (i32.const 42)))) + i32.const 42 + return)) (;; STDOUT ;;; main() => i32:42 ;;; STDOUT ;;) |