()
| 186 | // Run a simple WASI hello world, snapshot1 edition. |
| 187 | #[test] |
| 188 | fn hello_wasi_snapshot1() -> Result<()> { |
| 189 | let stdout = run_wasmtime(&["-Ccache=n", "tests/all/cli_tests/hello_wasi_snapshot1.wat"])?; |
| 190 | assert_eq!(stdout, "Hello, world!\n"); |
| 191 | Ok(()) |
| 192 | } |
| 193 | |
| 194 | #[test] |
| 195 | fn timeout_in_start() -> Result<()> { |
nothing calls this directly
no test coverage detected