diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2022-09-08 15:17:31 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-09-08 15:17:31 +0200 |
commit | 5f07efda063ae1cefa5f3162b8650761aba356cb (patch) | |
tree | 924161fc3ab1523ad10bc5394cfac15548718941 /gnu/tests | |
parent | b45a44eaad890f31d9418dbb8cb14e3ee1d83c19 (diff) |
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.scm | 3 |
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)) |