From 17b0749e1cf6db00f689c84850208c73c21909ad Mon Sep 17 00:00:00 2001 From: Saravanan D Date: Tue, 17 Feb 2026 23:44:32 +0000 Subject: [PATCH] tests: Fix Generic Initiator integration test test_guest_numa_generic_initiator was missing the #[test] attribute and did not match the VFIO CI filter pattern "vfio::test_nvidia" Add #[test] and rename to test_nvidia_guest_numa_generic_initiator so the existing CI infrastructure picks it up on the vfio-nvidia runner. Fixes: #7718 Signed-off-by: Saravanan D --- cloud-hypervisor/tests/integration.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cloud-hypervisor/tests/integration.rs b/cloud-hypervisor/tests/integration.rs index 6a58f96c2..3d54b4bd7 100644 --- a/cloud-hypervisor/tests/integration.rs +++ b/cloud-hypervisor/tests/integration.rs @@ -12030,7 +12030,8 @@ mod vfio { handle_child_output(r, &output); } - fn test_guest_numa_generic_initiator() { + #[test] + fn test_nvidia_guest_numa_generic_initiator() { // Skip test if VFIO device is not available or not ready if !std::path::Path::new(NVIDIA_VFIO_DEVICE).exists() { println!("SKIPPED: VFIO device {} not found", NVIDIA_VFIO_DEVICE);