ci: AArch64: Enable virtio-fs integration test

This commit enables the virtio-fs related integration test cases
for AArch64.

Note that to run virtio-fs cases, the host kernel should be
newer than v5.5.

Fixes: https://github.com/cloud-hypervisor/cloud-hypervisor/issues/1516

Signed-off-by: Henry Wang <henry.wang@arm.com>
This commit is contained in:
Henry Wang 2020-07-31 10:54:07 +08:00 committed by Sebastien Boeuf
parent 77ba041362
commit d5863caa4d

View File

@ -1550,7 +1550,9 @@ mod tests {
// ACPI is not built with mmio, hence we can't test the resize
// feature for mmio.
// ACPI is currently x86_64 only, we skip this for AArch64.
#[cfg(not(feature = "mmio"))]
#[cfg(target_arch = "x86_64")]
{
guest
.ssh_command(
@ -2620,31 +2622,26 @@ mod tests {
}
#[test]
#[cfg(target_arch = "x86_64")]
fn test_virtio_fs_dax_on_default_cache_size() {
test_virtio_fs(true, None, "none", &prepare_virtiofsd, false)
}
#[test]
#[cfg(target_arch = "x86_64")]
fn test_virtio_fs_dax_on_cache_size_1_gib() {
test_virtio_fs(true, Some(0x4000_0000), "none", &prepare_virtiofsd, false)
}
#[test]
#[cfg(target_arch = "x86_64")]
fn test_virtio_fs_dax_off() {
test_virtio_fs(false, None, "none", &prepare_virtiofsd, false)
}
#[test]
#[cfg(target_arch = "x86_64")]
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, false)
}
#[test]
#[cfg(target_arch = "x86_64")]
fn test_virtio_fs_dax_on_cache_size_1_gib_w_vhost_user_fs_daemon() {
test_virtio_fs(
true,
@ -2656,7 +2653,6 @@ mod tests {
}
#[test]
#[cfg(target_arch = "x86_64")]
fn test_virtio_fs_dax_off_w_vhost_user_fs_daemon() {
test_virtio_fs(false, None, "none", &prepare_vhost_user_fs_daemon, false)
}