Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some more asserts #24

Merged
merged 1 commit into from
Aug 25, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion ml-proto/test/expected-output/memory.wasm.log

This file was deleted.

8 changes: 4 additions & 4 deletions ml-proto/test/forward.wasm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
(global $scratch i32)
)

(invoke "even" (const.i32 13)) ;; 0 : i32
(invoke "even" (const.i32 20)) ;; 1 : i32
(invoke "odd" (const.i32 13)) ;; 1 : i32
(invoke "odd" (const.i32 20)) ;; 0 : i32
(asserteq (invoke "even" (const.i32 13)) (const.i32 0))
(asserteq (invoke "even" (const.i32 20)) (const.i32 1))
(asserteq (invoke "odd" (const.i32 13)) (const.i32 1))
(asserteq (invoke "odd" (const.i32 20)) (const.i32 0))
7 changes: 4 additions & 3 deletions ml-proto/test/memory.wasm
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@
(eq.f64 (getnear.f64 (const.i32 8)) (cast.i64.f64 (const.i64 -12345)))
(return (const.f64 0))
)
(setfarunaligneds.i16 (const.i64 3) (const.i32 -23423))
(return (getnear.f64 (const.i32 0)))
(setfarunaligneds.i64 (const.i64 9) (const.i64 0))
(setfarunaligneds.i16 (const.i64 15) (const.i32 16453))
(return (getnearunaligned.f64 (const.i32 9)))
)

(export "data" $data)
Expand All @@ -83,4 +84,4 @@
(asserteq (invoke "data") (const.i32 1))
(asserteq (invoke "aligned") (const.i32 1))
(asserteq (invoke "unaligned") (const.i32 1))
(invoke "cast") ;; -3.10552331246e+231 : f64
(asserteq (invoke "cast") (const.f64 42.0))