diff options
author | Kwadwo 'Que' Amankwa <jofreezy@hotmail.co.uk> | 2016-10-25 21:14:37 +0100 |
---|---|---|
committer | Ben Smith <binjimin@gmail.com> | 2016-10-25 13:14:37 -0700 |
commit | 134a7599e72f5d496450f8a9c03a992c8d678155 (patch) | |
tree | 5de2e839e88dae472aaab9e63807e3a6cf324c46 /test/interp/nested-if.txt | |
parent | aa78908319b232f8aa7429a468eaf12ae107502a (diff) | |
download | wabt-134a7599e72f5d496450f8a9c03a992c8d678155.tar.gz wabt-134a7599e72f5d496450f8a9c03a992c8d678155.tar.bz2 wabt-134a7599e72f5d496450f8a9c03a992c8d678155.zip |
Update tests syntax to new flat syntax (#180)
* more converted tests
* more tests plus fix to broken test
* fixed broken tests
* converted more tests and fixed issues with previously submitted 'interp/binary.txt' and 'nested-if.txt'
Diffstat (limited to 'test/interp/nested-if.txt')
-rw-r--r-- | test/interp/nested-if.txt | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/test/interp/nested-if.txt b/test/interp/nested-if.txt index 18538e33..82194346 100644 --- a/test/interp/nested-if.txt +++ b/test/interp/nested-if.txt @@ -7,14 +7,18 @@ (module (func (export "f") (result i32) - (block $exit - (if ;; outer if - (i32.const 1) - (drop (i32.const 2)) - (if ;; inner if - (i32.const 3) - (br $exit)))) - (i32.const 4))) + block $exit + i32.const 1 + if ;; outer if + i32.const 2 + drop + i32.const 3 + if ;; inner if + br $exit + end + end + end + i32.const 4)) (;; STDOUT ;;; f() => i32:4 ;;; STDOUT ;;) |