()
| 679 | |
| 680 | #[test] |
| 681 | fn test_irq() { |
| 682 | // Test case: successful IRQ signaling. |
| 683 | { |
| 684 | let test_ctx = TestContext::new(); |
| 685 | let ctx = test_ctx.create_epoll_handler_context(); |
| 686 | |
| 687 | let _queue: Queue = Queue::new(256).unwrap(); |
| 688 | ctx.handler.signal_used_queue(0).unwrap(); |
| 689 | } |
| 690 | } |
| 691 | |
| 692 | #[test] |
| 693 | fn test_txq_event() { |
nothing calls this directly
no test coverage detected