()
| 233 | // Check that execution continues after a breakpoint exception |
| 234 | #[test_case] |
| 235 | fn test_breakpoint_exception() { |
| 236 | // invoke a breakpoint exception |
| 237 | x86_64::instructions::interrupts::int3(); |
| 238 | } |
| 239 | |
| 240 | extern "x86-interrupt" fn double_fault_handler( |
| 241 | stack_frame: InterruptStackFrame, _error_code: u64) -> ! |
nothing calls this directly
no outgoing calls
no test coverage detected