From f060ecd70558c4ffe62e35ca13bc8ac15e3f68e0 Mon Sep 17 00:00:00 2001 From: Michael Zhao Date: Fri, 11 Jun 2021 15:43:10 +0800 Subject: [PATCH] tests: Unblock some vhost-user tests Signed-off-by: Michael Zhao --- tests/integration.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/integration.rs b/tests/integration.rs index cf18d0ace..1b71bd1e4 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -2544,7 +2544,6 @@ mod tests { } #[test] - #[cfg(target_arch = "x86_64")] fn test_vhost_user_net_host_mac() { test_vhost_user_net(None, 2, &prepare_vhost_user_net_daemon, true, false) } @@ -2555,25 +2554,21 @@ mod tests { } #[test] - #[cfg(target_arch = "x86_64")] fn test_vhost_user_blk_default() { test_vhost_user_blk(2, false, false, Some(&prepare_vubd)) } #[test] - #[cfg(target_arch = "x86_64")] fn test_vhost_user_blk_readonly() { test_vhost_user_blk(1, true, false, Some(&prepare_vubd)) } #[test] - #[cfg(target_arch = "x86_64")] fn test_vhost_user_blk_direct() { test_vhost_user_blk(1, false, true, Some(&prepare_vubd)) } #[test] - #[cfg(target_arch = "x86_64")] fn test_boot_from_vhost_user_blk_default() { test_boot_from_vhost_user_blk(1, false, false, Some(&prepare_vubd)) }