[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: tests: Increase VM memory size.
From: |
guix-commits |
Subject: |
02/02: tests: Increase VM memory size. |
Date: |
Sun, 18 Apr 2021 03:52:26 -0400 (EDT) |
mothacehe pushed a commit to branch master
in repository guix.
commit 89af95313d031e1a8a57c6a10f20a636884872b5
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Sun Apr 18 09:50:23 2021 +0200
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.
---
gnu/tests/web.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/tests/web.scm b/gnu/tests/web.scm
index 2a6dedc..61575f4 100644
--- a/gnu/tests/web.scm
+++ b/gnu/tests/web.scm
@@ -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))