From 8e76a4d0dc5603d8b2e3711d217cfe26b7c3b981 Mon Sep 17 00:00:00 2001 From: Arkadiusz Bokowy Date: Wed, 12 Feb 2025 14:52:07 +0100 Subject: [PATCH] test-runner: Remove the "-nographic" option passed to QEMU This option causes QEMU to redirect monitor and serial to the terminal, but also it modifies the terminal settings and clears it before printing anything. Such behavior might be annoying because it might clear some warning messages printed before clearing the screen. Since test-runner disables QEMU monitor and redirects serial to stdio in an explicit way, the "-nographic" option can be dropped. --- tools/test-runner.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/test-runner.c b/tools/test-runner.c index 77c89f3f9..13a5de465 100644 --- a/tools/test-runner.c +++ b/tools/test-runner.c @@ -212,7 +212,6 @@ static char *const qemu_argv[] = { "-display", "none", "-machine", "type=q35,accel=kvm:tcg", "-m", "256M", - "-nographic", "-net", "none", "-no-reboot", "-fsdev", "local,id=fsdev-root,path=/,readonly,security_model=none," -- 2.47.3