From: Frantisek Sumsal Date: Thu, 25 Aug 2022 12:52:30 +0000 (+0200) Subject: test: bump the base VM memory to 768M X-Git-Tag: v252-rc1~326^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a9c4977683a30fcd36baf64e35255e9846028c6;p=thirdparty%2Fsystemd.git test: bump the base VM memory to 768M as with 512M some tests occasionally trip off OOM-killer (e.g. TEST-64 + multipath). --- diff --git a/test/TEST-36-NUMAPOLICY/test.sh b/test/TEST-36-NUMAPOLICY/test.sh index 7909b1dce35..a0bfd4079ab 100755 --- a/test/TEST-36-NUMAPOLICY/test.sh +++ b/test/TEST-36-NUMAPOLICY/test.sh @@ -9,7 +9,7 @@ TEST_NO_NSPAWN=1 . "${TEST_BASE_DIR:?}/test-functions" if qemu_min_version "5.2.0"; then - QEMU_OPTIONS="-object memory-backend-ram,id=mem0,size=${QEMU_MEM:-512M} -numa node,memdev=mem0,nodeid=0" + QEMU_OPTIONS="-object memory-backend-ram,id=mem0,size=${QEMU_MEM:-768M} -numa node,memdev=mem0,nodeid=0" else QEMU_OPTIONS="-numa node,nodeid=0" fi diff --git a/test/test-functions b/test/test-functions index 14344a4d1ee..359eb90314f 100644 --- a/test/test-functions +++ b/test/test-functions @@ -483,7 +483,7 @@ run_qemu() { qemu_options+=( -smp "$QEMU_SMP" -net none - -m "${QEMU_MEM:-512M}" + -m "${QEMU_MEM:-768M}" -nographic -kernel "$KERNEL_BIN" -drive "format=raw,cache=unsafe,file=$image"