summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>2019-06-21 22:27:24 +0200
committerPeter Korsgaard <peter@korsgaard.com>2019-06-24 21:58:48 +0200
commit564ab80ac1380fbb4036947c8e7ff5bb66259e5c (patch)
tree5465b2508847ba268667731156c85294b472d239 /support
parentc8a9950aef06721d0109033d8a4b32fdc9290dc2 (diff)
support/testing/infra/emulator: increase memory size used by Qemu
By default, Qemu emulates a system with 128 MB of RAM. This is not sufficient for some test cases we have, such as TestPerlDBDmysql, where the initramfs is quite large. Therefore, this commit extends the RAM size emulated by Qemu to 256 MB. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/237108668 Thanks to Arnout for the analysis of the issue. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Acked-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> (cherry picked from commit 345c29a4b7321952b916c1b4eb88a03e136919be) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'support')
-rw-r--r--support/testing/infra/emulator.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/support/testing/infra/emulator.py b/support/testing/infra/emulator.py
index 802e89d4b4..3d3e1750c6 100644
--- a/support/testing/infra/emulator.py
+++ b/support/testing/infra/emulator.py
@@ -38,7 +38,8 @@ class Emulator(object):
qemu_cmd = ["qemu-system-{}".format(qemu_arch),
"-serial", "stdio",
- "-display", "none"]
+ "-display", "none",
+ "-m", "256"]
if options:
qemu_cmd += options