Fix 'not enough arguments' during wasmtime run (#858)

* Fix 'not enough arguments' during wasmtime run

* add simple cli smoke tests

* autogenerate wasm
This commit is contained in:
Yury Delendik
2020-01-30 14:29:50 +01:00
committed by GitHub
parent bc50815eac
commit a8cad05e80
5 changed files with 75 additions and 2 deletions

5
tests/wasm/simple.wat Normal file
View File

@@ -0,0 +1,5 @@
(module
(func (export "simple") (param i32) (result i32)
local.get 0
)
)