redox/kernel/tests/mod.rs

10 lines
145 B
Rust
Raw Normal View History

2016-08-14 22:59:18 +02:00
use arch::interrupt::{set_interrupts, halt};
#[test]
fn halt_with_interrupts() {
unsafe {
set_interrupts();
halt();
}
}