Rename "wast" to "wat" in filetests too.

This commit is contained in:
Dan Gohman
2017-11-02 07:46:18 -07:00
parent c30116d948
commit 04660ae8cc
5 changed files with 0 additions and 0 deletions

13
filetests/arith.wat Normal file
View File

@@ -0,0 +1,13 @@
(module
(memory 1)
(func $main (local i32)
(set_local 0 (i32.sub (i32.const 4) (i32.const 4)))
(if
(get_local 0)
(then unreachable)
(else (drop (i32.mul (i32.const 6) (get_local 0))))
)
)
(start $main)
(data (i32.const 0) "abcdefgh")
)