diff options
author | Ben Smith <binji@chromium.org> | 2019-06-28 15:44:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-28 15:44:56 -0700 |
commit | 41adcbfb106e035f90de93d472c10461bf4f3f9c (patch) | |
tree | 468010022dc4223686b14003c1a7ebb7a0781ec6 /test/help | |
parent | 2800d5725e79ac5cc6eb50c4d2265d1de4cdf4ed (diff) | |
download | wabt-41adcbfb106e035f90de93d472c10461bf4f3f9c.tar.gz wabt-41adcbfb106e035f90de93d472c10461bf4f3f9c.tar.bz2 wabt-41adcbfb106e035f90de93d472c10461bf4f3f9c.zip |
[interp] Add flag to provide dummy import funcs (#1101)
You can now pass `--dummy-import-func` to `wasm-interp`, which will
provide a function that logs the call and returns zero.
Diffstat (limited to 'test/help')
-rw-r--r-- | test/help/wasm-interp.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/help/wasm-interp.txt b/test/help/wasm-interp.txt index 05264173..9c84f15c 100644 --- a/test/help/wasm-interp.txt +++ b/test/help/wasm-interp.txt @@ -39,4 +39,5 @@ options: -t, --trace Trace execution --run-all-exports Run all the exported functions, in order. Useful for testing --host-print Include an importable function named "host.print" for printing to stdout + --dummy-import-func Provide a dummy implementation of all imported functions. The function will log the call and return an appropriate zero value. ;;; STDOUT ;;) |