From 17b0f40154c0cf6238bacef77a9bce1ef06668f1 Mon Sep 17 00:00:00 2001 From: Michael Zhao Date: Fri, 19 Nov 2021 09:16:39 +0800 Subject: [PATCH] tests: Enable PCI-segment tests Enabled following hot-plug tests: - virtio-net - virtio-pmem - virtio-fs Signed-off-by: Michael Zhao --- tests/integration.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/integration.rs b/tests/integration.rs index f5ea40ae7..fee34d2b6 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -3231,7 +3231,7 @@ mod tests { } #[test] - #[cfg(all(not(feature = "mshv"), target_arch = "x86_64"))] + #[cfg(not(feature = "mshv"))] fn test_virtio_fs_multi_segment_hotplug() { test_virtio_fs( true, @@ -4930,7 +4930,6 @@ mod tests { _test_pmem_hotplug(None) } - #[cfg(target_arch = "x86_64")] #[test] fn test_pmem_multi_segment_hotplug() { _test_pmem_hotplug(Some(15)) @@ -5072,7 +5071,6 @@ mod tests { _test_net_hotplug(None) } - #[cfg(target_arch = "x86_64")] #[test] fn test_net_multi_segment_hotplug() { _test_net_hotplug(Some(15))