refactor: move Wasm test files to tests/all/cli_tests
Previously the inputs to `tests/all/cli_tests.rs` were contained in `tests/wasm`. This change moves them to the more obvious `tests/all/cli_tests` directory and updates the paths that point to them.
This commit is contained in:
7
tests/all/cli_tests/simple.wat
Normal file
7
tests/all/cli_tests/simple.wat
Normal file
@@ -0,0 +1,7 @@
|
||||
(module
|
||||
(func (export "simple") (param i32) (result i32)
|
||||
local.get 0
|
||||
)
|
||||
(func (export "get_f32") (result f32) f32.const 100)
|
||||
(func (export "get_f64") (result f64) f64.const 100)
|
||||
)
|
||||
Reference in New Issue
Block a user