integration testing 2

This commit is contained in:
clizia 2025-08-31 21:28:00 +02:00
parent a3005ff146
commit 48f84b895b

View file

@ -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");
}