redox/kernel/tests/mod.rs
2016-08-14 14:59:18 -06:00

10 lines
145 B
Rust

use arch::interrupt::{set_interrupts, halt};
#[test]
fn halt_with_interrupts() {
unsafe {
set_interrupts();
halt();
}
}