tests: Increase VM memory size.
authorMathieu Othacehe <othacehe@gnu.org>
Sun, 18 Apr 2021 07:50:23 +0000 (09:50 +0200)
committerMathieu Othacehe <othacehe@gnu.org>
Sun, 18 Apr 2021 07:52:18 +0000 (09:52 +0200)
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.

gnu/tests/web.scm

index 2a6dedc..61575f4 100644 (file)
@@ -608,7 +608,8 @@ HTTP-PORT."
   (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))