From fc0d8082052cf9da48599f0785628186d782404a Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Sat, 5 Oct 2024 11:21:51 +0100 Subject: [PATCH] tests: Adjust test_tpm memory usage After updating the OS image to the latest jammy version this test now requires more memory to run Fixes: #6782 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 d0f53c9e8..dcdd552a0 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -7016,7 +7016,7 @@ mod common_parallel { let mut guest_cmd = GuestCommand::new(&guest); guest_cmd .args(["--cpus", "boot=1"]) - .args(["--memory", "size=512M"]) + .args(["--memory", "size=1G"]) .args(["--kernel", fw_path(FwType::RustHypervisorFirmware).as_str()]) .args(["--tpm", &format!("socket={swtpm_socket_path}")]) .capture_output()