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

10 lines
151 B
Rust

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