diff --git a/test/integration-test/src/tests/smoke.rs b/test/integration-test/src/tests/smoke.rs index 67ee8f06..a7450064 100644 --- a/test/integration-test/src/tests/smoke.rs +++ b/test/integration-test/src/tests/smoke.rs @@ -19,7 +19,7 @@ fn xdp() { #[integration_test] fn extension() { let (major, minor, _) = kernel_version().unwrap(); - if major < 5 || minor < 9 { + if major < 5 || (minor == 5 && minor < 9) { info!( "skipping as {}.{} does not meet version requirement of 5.9", major, minor