chore: ♻️ Improve scope usage

This commit is contained in:
Berkus Decker 2023-08-08 14:52:16 +03:00 committed by Berkus Decker
parent f3b65fa44c
commit 287d04ea11
1 changed files with 7 additions and 5 deletions

View File

@ -80,17 +80,19 @@ pub fn version() -> &'static str {
#[cfg(test)] #[cfg(test)]
mod lib_tests { mod lib_tests {
use super::*;
#[panic_handler] #[panic_handler]
fn panicked(info: &core::panic::PanicInfo) -> ! { fn panicked(info: &core::panic::PanicInfo) -> ! {
crate::panic::handler_for_tests(info) panic::handler_for_tests(info)
} }
/// Main for running tests. /// Main for running tests.
#[no_mangle] #[no_mangle]
pub unsafe fn main() -> ! { pub unsafe fn main() -> ! {
crate::exception::handling_init(); exception::handling_init();
crate::platform::drivers::qemu_bring_up_console(); platform::drivers::qemu_bring_up_console();
crate::test_main(); test_main();
crate::qemu::semihosting::exit_success() qemu::semihosting::exit_success()
} }
} }