Tidy tests a bit. (#6122)

This commit is contained in:
Sergei Pepyakin
2020-05-25 17:25:57 +02:00
committed by GitHub
parent 609f7daa12
commit b9f7b8baaa
17 changed files with 1153 additions and 1043 deletions
@@ -0,0 +1,14 @@
(module
(import "env" "ext_dispatch_call" (func $ext_dispatch_call (param i32 i32)))
(import "env" "memory" (memory 1 1))
(func (export "call")
(call $ext_dispatch_call
(i32.const 8) ;; Pointer to the start of encoded call buffer
(i32.const 11) ;; Length of the buffer
)
)
(func (export "deploy"))
(data (i32.const 8) "\00\00\03\00\00\00\00\00\00\00\C8")
)