()
| 314 | // Run a minimal command program. |
| 315 | #[test] |
| 316 | fn minimal_command() -> Result<()> { |
| 317 | let wasm = build_wasm("tests/all/cli_tests/minimal-command.wat")?; |
| 318 | let stdout = run_wasmtime(&["-Ccache=n", wasm.path().to_str().unwrap()])?; |
| 319 | assert_eq!(stdout, ""); |
| 320 | Ok(()) |
| 321 | } |
| 322 | |
| 323 | // Run a minimal reactor program. |
| 324 | #[test] |
nothing calls this directly
no test coverage detected