MCPcopy Create free account
hub / github.com/LPC4/Full-Stack / kernel_boot_prints_banner

Function kernel_boot_prints_banner

tests/integration/platform_stdlib.rs:483–497  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

481main: () -> i32 {
482 klog_error("fault".ptr)
483 return 0
484}
485"#,
486 );
487 assert_eq!(uart, "[ ERR ] fault\n");
488 assert_eq!(exit, Some(0));
489}
490
491#[test]
492fn klog_int_output() {
493 let (uart, exit) = run_with(
494 KLOG_SRC,
495 r#"
496main: () -> i32 {
497 klog_int("count".ptr, 42)
498 return 0
499}
500"#,

Callers

nothing calls this directly

Calls 1

run_kernel_hllFunction · 0.70

Tested by

no test coverage detected