()
| 62 | #[test] |
| 63 | #[cfg(not(miri))] |
| 64 | fn can_run_on_cli() -> Result<()> { |
| 65 | use crate::cli_tests::run_wasmtime; |
| 66 | run_wasmtime(&[ |
| 67 | "--target", |
| 68 | &pulley_target(), |
| 69 | "tests/all/cli_tests/empty-module.wat", |
| 70 | ])?; |
| 71 | run_wasmtime(&[ |
| 72 | "run", |
| 73 | "--target", |
| 74 | &pulley_target(), |
| 75 | "tests/all/cli_tests/empty-module.wat", |
| 76 | ])?; |
| 77 | Ok(()) |
| 78 | } |
| 79 | |
| 80 | fn provenance_test_config() -> Config { |
| 81 | let mut config = pulley_config(); |
nothing calls this directly
no test coverage detected