tests: docker: Increase VM building memory size to 1024MiB.

This fixes the following error when running the "docker-system" test:

In ice-9/ftw.scm:
   553:30  1 (_ #<directory stream db6660>)
In unknown file:
           0 (readdir #<directory stream db6660>)

ERROR: In procedure readdir:
In procedure readdir: Cannot allocate memory

* gnu/tests/docker.scm (%test-docker-system): Bump image building VM memory
size to 1024 MiB.
This commit is contained in:
Mathieu Othacehe 2021-04-12 14:09:24 +02:00
parent 98bf60bf4f
commit e1a4652099
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -303,5 +303,6 @@ (define %test-docker-system
(inherit (simple-operating-system))
;; Use locales for a single libc to
;; reduce space requirements.
(locale-libcs (list glibc))))
(locale-libcs (list glibc)))
#:memory-size 1024)
run-docker-system-test)))))