From 78b9edf8485f8a2003825b1e1d0316ee200ff060 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 18 Nov 2020 10:34:14 +0000 Subject: [PATCH] tests: Get output from firmware and Linux for test_large_vm() As we switched to focal for this test we no longer get any output during the boot unless serial is used over virtio-console. Signed-off-by: Rob Bradford --- tests/integration.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration.rs b/tests/integration.rs index 763093698..ea06fe494 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -2411,6 +2411,8 @@ mod tests { cmd.args(&["--cpus", "boot=48"]) .args(&["--memory", "size=5120M"]) .args(&["--kernel", guest.fw_path.as_str()]) + .args(&["--serial", "tty"]) + .args(&["--console", "off"]) .capture_output() .default_disks() .default_net();