Improve test runner

This commit is contained in:
Berkus Decker 2020-10-20 21:17:07 +03:00
parent d572b2c297
commit e6d4bf6095
1 changed files with 1 additions and 0 deletions

View File

@ -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();