From 571bc32fd9d0679e22e6194ce2877bcabc97a762 Mon Sep 17 00:00:00 2001 From: Arkadiusz Bokowy Date: Wed, 12 Feb 2025 14:52:06 +0100 Subject: [PATCH] test-runner: Increase amount of RAM available in VM 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.47.3