diff options
author | Laurent Bonnans <laurent.bonnans@here.com> | 2019-07-15 15:37:43 +0200 |
---|---|---|
committer | Mykhaylo Sul <ext-mykhaylo.sul@here.com> | 2019-07-17 16:03:27 +0300 |
commit | 0758a64e1a2265dcd6bc100cf5b035e9bc6e10a0 (patch) | |
tree | 85bdb018613848ae3d7c04070870395aebbfaf69 /lib/oeqa/selftest/cases/testutils.py | |
parent | 5e1563d69165e857548c6ae35d91097501c92d1d (diff) | |
download | meta-updater-0758a64e1a2265dcd6bc100cf5b035e9bc6e10a0.tar.gz |
Use 128M by default for qemu in oe-selftests
Signed-off-by: Laurent Bonnans <laurent.bonnans@here.com>
Diffstat (limited to 'lib/oeqa/selftest/cases/testutils.py')
-rw-r--r-- | lib/oeqa/selftest/cases/testutils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/oeqa/selftest/cases/testutils.py b/lib/oeqa/selftest/cases/testutils.py index 208f822..8d618a6 100644 --- a/lib/oeqa/selftest/cases/testutils.py +++ b/lib/oeqa/selftest/cases/testutils.py | |||
@@ -34,6 +34,7 @@ def qemu_boot_image(imagename, **kwargs): | |||
34 | args.dir = 'tmp/deploy/images' | 34 | args.dir = 'tmp/deploy/images' |
35 | args.efi = kwargs.get('efi', False) | 35 | args.efi = kwargs.get('efi', False) |
36 | args.machine = kwargs.get('machine', None) | 36 | args.machine = kwargs.get('machine', None) |
37 | args.mem = kwargs.get('mem', '128M') | ||
37 | qemu_use_kvm = get_bb_var("QEMU_USE_KVM") | 38 | qemu_use_kvm = get_bb_var("QEMU_USE_KVM") |
38 | if qemu_use_kvm and \ | 39 | if qemu_use_kvm and \ |
39 | (qemu_use_kvm == 'True' and 'x86' in args.machine or | 40 | (qemu_use_kvm == 'True' and 'x86' in args.machine or |