summaryrefslogtreecommitdiff
path: root/test/interp/brif-loop.txt
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-04-01 12:30:07 -0700
committerBen Smith <binji@chromium.org>2016-04-02 22:32:14 -0700
commit3218cc8b453c361936fe69fe9a0ec530d47db79c (patch)
tree9b04fbe4c6eeaede3bbb21c041444b4b4095f9a2 /test/interp/brif-loop.txt
parent78526e008053b01b5a65cce53e916533e44aad39 (diff)
downloadwabt-3218cc8b453c361936fe69fe9a0ec530d47db79c.tar.gz
wabt-3218cc8b453c361936fe69fe9a0ec530d47db79c.tar.bz2
wabt-3218cc8b453c361936fe69fe9a0ec530d47db79c.zip
add interpreter tests, copied from d8 tests
Diffstat (limited to 'test/interp/brif-loop.txt')
-rw-r--r--test/interp/brif-loop.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/interp/brif-loop.txt b/test/interp/brif-loop.txt
new file mode 100644
index 00000000..2d4cd010
--- /dev/null
+++ b/test/interp/brif-loop.txt
@@ -0,0 +1,20 @@
+;;; TOOL: run-interp
+(module
+ (func $f (param i32) (result i32)
+ (local i32)
+ (loop $cont
+ (set_local 1 (i32.add (get_local 1) (i32.const 1)))
+ (br_if $cont (i32.lt_s (get_local 1) (get_local 0))))
+ (return (get_local 1)))
+
+ (export "test1" $test1)
+ (func $test1 (result i32)
+ (call $f (i32.const 3)))
+
+ (export "test2" $test2)
+ (func $test2 (result i32)
+ (call $f (i32.const 10))))
+(;; STDOUT ;;;
+test1() => i32:3
+test2() => i32:10
+;;; STDOUT ;;)