summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/boot.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/boot.rs b/tests/boot.rs
index b4e38e1..f74f38e 100644
--- a/tests/boot.rs
+++ b/tests/boot.rs
@@ -15,6 +15,7 @@ use libc::{cpu_set_t, sched_getaffinity};
 
 use crosvm::{linux, Config, Executable};
 use devices::{SerialParameters, SerialType};
+use sys_util::syslog;
 
 const CHROOT_KERNEL_PATH: &str = "/mnt/host/source/src/third_party/kernel/v4.19/";
 const CONTAINER_VM_DEFCONFIG: &str = "arch/x86/configs/chromiumos-container-vm-x86_64_defconfig";
@@ -220,6 +221,8 @@ fn prepare_kernel() -> PathBuf {
 
 #[test]
 fn boot() {
+    syslog::init().unwrap();
+
     let kernel_path = prepare_kernel();
 
     let mut c = Config::default();