From 22dd49d0b5222500093d14ecda79bc8efa0e7b17 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Tue, 3 Mar 2020 17:39:34 +0000 Subject: [PATCH] tests: Test virtio-fs with virtio-mmio Now that virtio-mmio transport has support for SHM regions we should be able to test virtio-fs against it. Signed-off-by: Rob Bradford --- tests/integration.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/integration.rs b/tests/integration.rs index cf08f8451..446fab7f4 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -1752,27 +1752,22 @@ mod tests { }); } - #[cfg_attr(not(feature = "mmio"), test)] fn test_virtio_fs_dax_on_default_cache_size() { test_virtio_fs(true, None, "none", &prepare_virtiofsd) } - #[cfg_attr(not(feature = "mmio"), test)] fn test_virtio_fs_dax_on_cache_size_1_gib() { test_virtio_fs(true, Some(0x4000_0000), "none", &prepare_virtiofsd) } - #[cfg_attr(not(feature = "mmio"), test)] fn test_virtio_fs_dax_off() { test_virtio_fs(false, None, "none", &prepare_virtiofsd) } - #[cfg_attr(not(feature = "mmio"), test)] fn test_virtio_fs_dax_on_default_cache_size_w_vhost_user_fs_daemon() { test_virtio_fs(true, None, "none", &prepare_vhost_user_fs_daemon) } - #[cfg_attr(not(feature = "mmio"), test)] fn test_virtio_fs_dax_on_cache_size_1_gib_w_vhost_user_fs_daemon() { test_virtio_fs( true, @@ -1782,7 +1777,6 @@ mod tests { ) } - #[cfg_attr(not(feature = "mmio"), test)] fn test_virtio_fs_dax_off_w_vhost_user_fs_daemon() { test_virtio_fs(false, None, "none", &prepare_vhost_user_fs_daemon) }