From 184a229ca4a50c8292863fbe70e1b776fbd04772 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Mon, 23 Feb 2026 18:02:01 +0100 Subject: [PATCH] tests: vhdx: Enable VHDX fstrim integration test Remove the #[ignore] attribute from test_virtio_block_fstrim_unsupported_vhdx. Signed-off-by: Anatol Belski --- cloud-hypervisor/tests/integration.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cloud-hypervisor/tests/integration.rs b/cloud-hypervisor/tests/integration.rs index 1aad1a372..e9d2e66c1 100644 --- a/cloud-hypervisor/tests/integration.rs +++ b/cloud-hypervisor/tests/integration.rs @@ -7793,11 +7793,7 @@ mod common_parallel { _test_virtio_block_fstrim("vhd", "vpc", &["-o", "subformat=fixed"], false, false); } - // VHDX backend has a multiqueue bug causing filesystem corruption. - // The _test_virtio_block_fstrim helper uses num_queues>1 which triggers the bug. - // Ref: #7665 #[test] - #[ignore] fn test_virtio_block_fstrim_unsupported_vhdx() { _test_virtio_block_fstrim("vhdx", "vhdx", &[], false, false); }