diff options
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/gcc.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/gcc.py b/meta/lib/oeqa/selftest/cases/gcc.py index 1bda29a72b..eb8082db28 100644 --- a/meta/lib/oeqa/selftest/cases/gcc.py +++ b/meta/lib/oeqa/selftest/cases/gcc.py | |||
| @@ -79,7 +79,8 @@ class GccSelfTestBase(OESelftestTestCase, OEPTestResultTestCase): | |||
| 79 | bitbake("core-image-minimal") | 79 | bitbake("core-image-minimal") |
| 80 | 80 | ||
| 81 | # wrap the execution with a qemu instance | 81 | # wrap the execution with a qemu instance |
| 82 | with runqemu("core-image-minimal", runqemuparams = "nographic") as qemu: | 82 | # Increase RAM to 4GB to accommodate some GCC tests that require more than 3GB |
| 83 | with runqemu("core-image-minimal", runqemuparams = "nographic", qemuparams=" -m 4096") as qemu: | ||
| 83 | # validate that SSH is working | 84 | # validate that SSH is working |
| 84 | status, _ = qemu.run("uname") | 85 | status, _ = qemu.run("uname") |
| 85 | self.assertEqual(status, 0) | 86 | self.assertEqual(status, 0) |
