From 48f84b895b1a32039c406c4e05d394df9a9e4793 Mon Sep 17 00:00:00 2001 From: clizia Date: Sun, 31 Aug 2025 21:28:00 +0200 Subject: [PATCH] integration testing 2 --- tests/basic_boot.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/basic_boot.rs b/tests/basic_boot.rs index cfa33ec..79ce882 100644 --- a/tests/basic_boot.rs +++ b/tests/basic_boot.rs @@ -5,6 +5,7 @@ #![reexport_test_harness_main = "test_main"] use core::panic::PanicInfo; +use totos::println; #[unsafe(no_mangle)] pub extern "C" fn _start() -> ! { @@ -17,3 +18,8 @@ pub extern "C" fn _start() -> ! { fn panic(info: &PanicInfo) -> ! { totos::test_panic_handler(info) } + +#[test_case] +fn test_println() { + println!("test_println_output"); +}