From 287d04ea1164ac5603a7c199c2b93548059a19a0 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Tue, 8 Aug 2023 14:52:16 +0300 Subject: [PATCH] =?UTF-8?q?chore:=20=E2=99=BB=EF=B8=8F=20Improve=20scope?= =?UTF-8?q?=20usage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- machine/src/lib.rs | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/machine/src/lib.rs b/machine/src/lib.rs index 9757528..4d7afe1 100644 --- a/machine/src/lib.rs +++ b/machine/src/lib.rs @@ -80,17 +80,19 @@ pub fn version() -> &'static str { #[cfg(test)] mod lib_tests { + use super::*; + #[panic_handler] fn panicked(info: &core::panic::PanicInfo) -> ! { - crate::panic::handler_for_tests(info) + panic::handler_for_tests(info) } /// Main for running tests. #[no_mangle] pub unsafe fn main() -> ! { - crate::exception::handling_init(); - crate::platform::drivers::qemu_bring_up_console(); - crate::test_main(); - crate::qemu::semihosting::exit_success() + exception::handling_init(); + platform::drivers::qemu_bring_up_console(); + test_main(); + qemu::semihosting::exit_success() } }