When using default kernel configuration from Ubuntu 24.04 patched with the configuration from tester.config, the kernel image is too big to run on 192M bytes of RAM. As a result the test-runner exits without any message (because of the "quite" kernel command line option). --- tools/test-runner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-runner.c b/tools/test-runner.c index cd8b86d7a..77c89f3f9 100644 --- a/tools/test-runner.c +++ b/tools/test-runner.c @@ -211,7 +211,7 @@ static char *const qemu_argv[] = { "-monitor", "none", "-display", "none", "-machine", "type=q35,accel=kvm:tcg", - "-m", "192M", + "-m", "256M", "-nographic", "-net", "none", "-no-reboot", -- 2.43.0