From: Richard Purdie Date: Wed, 24 Dec 2025 13:01:29 +0000 (+0000) Subject: oeqa/selftest/glibc: Increase VM memory X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git oeqa/selftest/glibc: Increase VM memory We're seeing OOM killer issues when testing glibc on KVM system mode testing which leads to hanging selftests on the autobuilder. The processes killed in the images are semi-random. Increase the memory size to avoid these hanging builds. Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/selftest/cases/glibc.py b/meta/lib/oeqa/selftest/cases/glibc.py index 0838e8ac33..b2b115972f 100644 --- a/meta/lib/oeqa/selftest/cases/glibc.py +++ b/meta/lib/oeqa/selftest/cases/glibc.py @@ -70,7 +70,7 @@ class GlibcSelfTestBase(OESelftestTestCase, OEPTestResultTestCase): bitbake("core-image-minimal") # start runqemu - qemu = s.enter_context(runqemu("core-image-minimal", runqemuparams = "nographic", qemuparams = "-m 1024")) + qemu = s.enter_context(runqemu("core-image-minimal", runqemuparams = "nographic", qemuparams = "-m 2048")) # validate that SSH is working status, _ = qemu.run("uname")