tests: Increase VM memory size.

The patchwork test sometimes fail because there's not enough available RAM in
the marionette. Increase the VM memory size to 1024MiB.

* gnu/tests/web.scm (run-patchwork-test): Increase VM memory size to 1024MiB.
This commit is contained in:
Mathieu Othacehe 2021-04-18 09:50:23 +02:00
parent 3b5c4e6fb2
commit 89af95313d
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -608,7 +608,8 @@ (define forwarded-port 8080)
(define vm
(virtual-machine
(operating-system os)
(port-forwardings `((8080 . ,forwarded-port)))))
(port-forwardings `((8080 . ,forwarded-port)))
(memory-size 1024)))
(define test
(with-imported-modules '((gnu build marionette))