On 3/19/2026 6:11 PM, Bruce Richardson wrote:
FreeBSD does not have interrupt support for DPDK, so skip the test associated with that functionality.Bugzilla ID: 761 (partial fix) Fixes: 764bf26873b9 ("add FreeBSD support") Cc: [email protected] Signed-off-by: Bruce Richardson <[email protected]> --- app/test/test_interrupts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_interrupts.c b/app/test/test_interrupts.c index 2eb876e65a..3a5be92cd7 100644 --- a/app/test/test_interrupts.c +++ b/app/test/test_interrupts.c @@ -429,7 +429,7 @@ test_interrupt(void) int ret = -1; struct rte_intr_handle *test_intr_handle;- if (RTE_EXEC_ENV_IS_WINDOWS)+ if (RTE_EXEC_ENV_IS_WINDOWS || RTE_EXEC_ENV_IS_FREEBSD) return TEST_SKIPPED;if (test_interrupt_init() < 0) {
Acked-by: Anatoly Burakov <[email protected]> -- Thanks, Anatoly

