From caf15f0acb087fdb8a2e7f3bc49a4077e715b966 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Sat, 5 Oct 2024 11:20:12 +0100 Subject: [PATCH] tests: Give test_vfio_user more RAM When running with the newer jammy OS image error messages from Rust Hypervisor Firmware about lack of ram when rebooting where observed. Increase the RAM allocation to allow it to boot after a reboot. Signed-off-by: Rob Bradford --- tests/integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index 2b5538a64..d0f53c9e8 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -6732,7 +6732,7 @@ mod common_parallel { let mut child = GuestCommand::new(&guest) .args(["--api-socket", &api_socket]) .args(["--cpus", "boot=1"]) - .args(["--memory", "size=512M,shared=on,hugepages=on"]) + .args(["--memory", "size=1G,shared=on,hugepages=on"]) .args(["--kernel", fw_path(FwType::RustHypervisorFirmware).as_str()]) .args(["--serial", "tty", "--console", "off"]) .default_disks()