summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa
diff options
context:
space:
mode:
authorAnuj Mittal <anuj.mittal@intel.com>2023-07-27 00:22:07 +0800
committerSteve Sakoman <steve@sakoman.com>2023-09-15 03:47:11 -1000
commit9e2099f2a8ff7650c177f92150820647573ed00d (patch)
tree8d9356c1edbca714598355483858fe0d84b371db /meta/lib/oeqa
parentc3d7af5d16e37d8b6e2a0408b259d675a9ec9013 (diff)
downloadpoky-9e2099f2a8ff7650c177f92150820647573ed00d.tar.gz
selftest/cases/glibc.py: increase the memory for testing
Some of the tests trigger OOM and fail. Increase the amount of memory available so we dont run into these issues. (From OE-Core rev: 50b07b4c0c814f2832816cf83863687155429b21) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 4d22dba482cb19ffcff5abee73f24526ea9d1c2a) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r--meta/lib/oeqa/selftest/cases/glibc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/glibc.py b/meta/lib/oeqa/selftest/cases/glibc.py
index cf8c92887b..f2ed822bf3 100644
--- a/meta/lib/oeqa/selftest/cases/glibc.py
+++ b/meta/lib/oeqa/selftest/cases/glibc.py
@@ -61,7 +61,7 @@ class GlibcSelfTestBase(OESelftestTestCase, OEPTestResultTestCase):
61 bitbake("core-image-minimal") 61 bitbake("core-image-minimal")
62 62
63 # start runqemu 63 # start runqemu
64 qemu = s.enter_context(runqemu("core-image-minimal", runqemuparams = "nographic")) 64 qemu = s.enter_context(runqemu("core-image-minimal", runqemuparams = "nographic", qemuparams = "-m 1024"))
65 65
66 # validate that SSH is working 66 # validate that SSH is working
67 status, _ = qemu.run("uname") 67 status, _ = qemu.run("uname")