me
/
guix
Archived
1
0
Fork 0

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.
master
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
1 changed files with 2 additions and 1 deletions

View File

@ -303,5 +303,6 @@ docker-image} inside Docker.")
(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)))))