()
| 160 | assert_eq!(uart.trim_end_matches('\n'), "PASS"); |
| 161 | assert_eq!(exit, Some(0)); |
| 162 | } |
| 163 | |
| 164 | // Verify that an inline-asm bridge can capture the stack pointer. |
| 165 | #[test] |
| 166 | fn asm_bridge_reads_sp() { |
| 167 | let src = r#" |
| 168 | console := import("console") |
| 169 | |
| 170 | get_sp: () -> i64 { |
nothing calls this directly
no test coverage detected