aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.si>2022-06-23 18:13:29 +0200
committerMathieu Othacehe <othacehe@gnu.org>2022-06-24 10:24:54 +0200
commited2d2a2d579456c356288232128bf32322c5edfa (patch)
tree30a07921a1157090b1bf7a8c2ed64060c130f251
parent62c86c8391ceb8953ca972498fd75ea9298b85ff (diff)
downloadguix-ed2d2a2d579456c356288232128bf32322c5edfa.tar
guix-ed2d2a2d579456c356288232128bf32322c5edfa.tar.gz
tests: ldap: Increase VM memory size.
With the default limit of 512 MB the test sometimes fails, in different ways. Fixes https://issues.guix.gnu.org/55206. * gnu/tests/ldap.scm (run-ldap-test): Increase memory size to 1024 MiB. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
-rw-r--r--gnu/tests/ldap.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/tests/ldap.scm b/gnu/tests/ldap.scm
index d5403b3539..47e77c0c53 100644
--- a/gnu/tests/ldap.scm
+++ b/gnu/tests/ldap.scm
@@ -58,7 +58,9 @@
(guix combinators))))
(define vm
- (virtual-machine os))
+ (virtual-machine
+ (operating-system os)
+ (memory-size 1024)))
(define test
(with-imported-modules '((gnu build marionette))