error: unsupported operation: can't call foreign function `rust_psm_stack_pointer` on OS `linux`
()
| 12 | #[mz_ore::test] |
| 13 | #[cfg_attr(miri, ignore)] // error: unsupported operation: can't call foreign function `rust_psm_stack_pointer` on OS `linux` |
| 14 | fn run_roundtrip_tests() { |
| 15 | // Interpret datadriven tests. |
| 16 | datadriven::walk("tests/test_mir_parser", |f| { |
| 17 | let mut catalog = TestCatalog::default(); |
| 18 | f.run(|test_case| -> String { |
| 19 | match test_case.directive.as_str() { |
| 20 | "define" => handle_define(&mut catalog, &test_case.input), |
| 21 | "roundtrip" => handle_roundtrip(&catalog, &test_case.input), |
| 22 | _ => format!("unknown directive: {}", test_case.directive), |
| 23 | } |
| 24 | }) |
| 25 | }); |
| 26 | } |
nothing calls this directly
no test coverage detected