From bb1ef5f1b8a67148e0c264da2cf9a15a6bbfa8ca Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Fri, 18 Dec 2020 11:11:51 +0000 Subject: [PATCH] tests: integration: Remove quiet from kernel command line It will be useful to see kernel output from our integration tests when they fail. 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 e69f64c94..5fcef6b13 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -95,7 +95,7 @@ mod tests { #[cfg(target_arch = "aarch64")] const FOCAL_IMAGE_NAME: &str = "focal-server-cloudimg-arm64-custom"; - const DIRECT_KERNEL_BOOT_CMDLINE: &str = "root=/dev/vda1 console=hvc0 quiet rw"; + const DIRECT_KERNEL_BOOT_CMDLINE: &str = "root=/dev/vda1 console=hvc0 rw"; const PIPE_SIZE: i32 = 32 << 20;