tests: Increase memory for containerd tests to 3GB

It ran out of space with 2GB

Signed-off-by: Rolf Neugebauer <rn@rneugeba.io>
This commit is contained in:
Rolf Neugebauer 2020-01-08 22:04:44 +00:00
parent d9671ee29f
commit b5aca63ffc

View File

@ -18,7 +18,7 @@ trap clean_up EXIT
# Test code goes here # Test code goes here
linuxkit build -format kernel+initrd -name "${NAME}" test.yml linuxkit build -format kernel+initrd -name "${NAME}" test.yml
RESULT="$(linuxkit run -mem 2048 -disk size=2G ${NAME})" RESULT="$(linuxkit run -mem 3072 -disk size=2G ${NAME})"
echo "${RESULT}" | grep -q "suite PASSED" echo "${RESULT}" | grep -q "suite PASSED"
exit 0 exit 0