(tests: &[&dyn CanTest])
| 105 | } |
| 106 | |
| 107 | pub fn testexec(tests: &[&dyn CanTest]) |
| 108 | { |
| 109 | serprintln!("RUNNING {} TESTS:", tests.len()); |
| 110 | for test in tests |
| 111 | { |
| 112 | test.exec(); |
| 113 | } |
| 114 | exitqemu(QEMUExitCode::Success); |
| 115 | } |
| 116 | |
| 117 | pub fn test_panic_handler(info: &PanicInfo) -> ! |
| 118 | { |