From e6d4bf6095fb3d6af643467be50138246781aa02 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Tue, 20 Oct 2020 21:17:07 +0300 Subject: [PATCH] Improve test runner --- nucleus/src/tests.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/nucleus/src/tests.rs b/nucleus/src/tests.rs index cfcf67c..8269f0b 100644 --- a/nucleus/src/tests.rs +++ b/nucleus/src/tests.rs @@ -12,6 +12,7 @@ pub fn test_runner(tests: &[&dyn Fn()]) { println!("Running {} tests", tests.len()); for test in tests { test(); + println!("[ok]"); } println!("[success]"); qemu::semihosting::exit_success();