We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, we benchmark when the task_start is invoked to the end of the execution of the wasm module.
fn run_wasmtime_test_with_spec(wasmbytes: &[u8]) -> Result<u32, Error> { let (exit_code, _, _) = WasiTest::<WasmtimeTestInstance>::builder()? .with_wasm(wasmbytes)? .build()? .start()? .wait(Duration::from_secs(10))?; Ok(exit_code) }
We would love to benchmark the start up of the shim, namely from the entrypoint of shim_main() to run_wasi().
shim_main()
run_wasi()
The text was updated successfully, but these errors were encountered:
I'm giving this a try
Sorry, something went wrong.
dblnz
No branches or pull requests
Currently, we benchmark when the task_start is invoked to the end of the execution of the wasm module.
We would love to benchmark the start up of the shim, namely from the entrypoint of
shim_main()
torun_wasi()
.The text was updated successfully, but these errors were encountered: