summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnuj Mittal <anuj.mittal@intel.com>2023-07-27 00:22:07 +0800
committerSteve Sakoman <steve@sakoman.com>2023-08-15 06:18:49 -1000
commit13a94b094b6e0f72352f65af82ff43614d306953 (patch)
treed3556ed863dfda02ec55168ea5d859b1f4f4e8e2
parenta5116b5c3a592a971c1a586605751ca40a4e6448 (diff)
downloadpoky-13a94b094b6e0f72352f65af82ff43614d306953.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: b4e7158aca35235c86afee2b68236e250488ef98) 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>
-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 4ec4b85d67..c300aef913 100644
--- a/meta/lib/oeqa/selftest/cases/glibc.py
+++ b/meta/lib/oeqa/selftest/cases/glibc.py
@@ -65,7 +65,7 @@ class GlibcSelfTestBase(OESelftestTestCase, OEPTestResultTestCase):
65 bitbake("core-image-minimal") 65 bitbake("core-image-minimal")
66 66
67 # start runqemu 67 # start runqemu
68 qemu = s.enter_context(runqemu("core-image-minimal", runqemuparams = "nographic")) 68 qemu = s.enter_context(runqemu("core-image-minimal", runqemuparams = "nographic", qemuparams = "-m 1024"))
69 69
70 # validate that SSH is working 70 # validate that SSH is working
71 status, _ = qemu.run("uname") 71 status, _ = qemu.run("uname")