()
| 382 | assert!( |
| 383 | uart.contains("[ WARN ] device tree:"), |
| 384 | "device tree stub must emit warn; uart={uart:?}" |
| 385 | ); |
| 386 | assert!( |
| 387 | uart.contains("[ OK ] interrupt controller online\n"), |
| 388 | "interrupt controller must initialize and report online; uart={uart:?}" |
| 389 | ); |
| 390 | } |
| 391 | |
| 392 | #[test] |
| 393 | fn pmm_smoke_test_passes() { |
| 394 | let (uart, exit) = run_kernel_hll(kernel::MY_KERNEL); |
nothing calls this directly
no test coverage detected