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 <rbradford@rivosinc.com>
This commit is contained in:
Rob Bradford 2024-10-05 11:21:51 +01:00
parent caf15f0acb
commit fc0d808205

View File

@ -7016,7 +7016,7 @@ mod common_parallel {
let mut guest_cmd = GuestCommand::new(&guest); let mut guest_cmd = GuestCommand::new(&guest);
guest_cmd guest_cmd
.args(["--cpus", "boot=1"]) .args(["--cpus", "boot=1"])
.args(["--memory", "size=512M"]) .args(["--memory", "size=1G"])
.args(["--kernel", fw_path(FwType::RustHypervisorFirmware).as_str()]) .args(["--kernel", fw_path(FwType::RustHypervisorFirmware).as_str()])
.args(["--tpm", &format!("socket={swtpm_socket_path}")]) .args(["--tpm", &format!("socket={swtpm_socket_path}")])
.capture_output() .capture_output()