summary refs log tree commit diff
path: root/gnu/tests
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2022-09-08 15:17:31 +0200
committerMathieu Othacehe <othacehe@gnu.org>2022-09-08 15:17:31 +0200
commit5f07efda063ae1cefa5f3162b8650761aba356cb (patch)
tree924161fc3ab1523ad10bc5394cfac15548718941 /gnu/tests
parentb45a44eaad890f31d9418dbb8cb14e3ee1d83c19 (diff)
downloadguix-5f07efda063ae1cefa5f3162b8650761aba356cb.tar.gz
tests: dict: Increase VM memory-size.
* gnu/tests/dict.scm (run-dicod-test): Increase it to 1024 MiB.
Diffstat (limited to 'gnu/tests')
-rw-r--r--gnu/tests/dict.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/tests/dict.scm b/gnu/tests/dict.scm
index 4d9702360c..f02bd5ac99 100644
--- a/gnu/tests/dict.scm
+++ b/gnu/tests/dict.scm
@@ -63,7 +63,8 @@
   (define vm
     (virtual-machine
      (operating-system os)
-     (port-forwardings '((8000 . 2628)))))
+     (port-forwardings '((8000 . 2628)))
+     (memory-size 1024)))
 
   (define test
     (with-imported-modules '((gnu build marionette))