()
| 409 | // See https://github.com/bytecodealliance/wasmtime/issues/1967 |
| 410 | #[test] |
| 411 | fn exit_with_saved_fprs() -> Result<()> { |
| 412 | let wasm = build_wasm("tests/all/cli_tests/exit_with_saved_fprs.wat")?; |
| 413 | let output = run_wasmtime_for_output(&["-Ccache=n", wasm.path().to_str().unwrap()], None)?; |
| 414 | assert_eq!(output.status.code().unwrap(), 0); |
| 415 | assert!(output.stdout.is_empty()); |
| 416 | Ok(()) |
| 417 | } |
| 418 | |
| 419 | #[test] |
| 420 | fn run_cwasm() -> Result<()> { |
nothing calls this directly
no test coverage detected