diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2020-04-29 09:11:24 +0200 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2020-04-29 10:08:54 +0200 |
commit | ae1a0f75831cfcc81d4875031407d2934317300b (patch) | |
tree | 1e134cb00fd9612e91860b76c421092756d31dd9 /gnu | |
parent | f93eebbf9ca8477404827f44daf3121b11120e99 (diff) | |
download | patches-ae1a0f75831cfcc81d4875031407d2934317300b.tar patches-ae1a0f75831cfcc81d4875031407d2934317300b.tar.gz |
tests: install: Increase virtual machine RAM.
It seems that 'guix system init' is consuming more than the 800M of RAM
currently allocated. Until this is understood, bump the limit to 1.2G.
Reported here:
https://lists.gnu.org/archive/html/bug-guix/2020-04/msg00519.html
* gnu/tests/install.scm (run-install): Bump RAM to 1.2G.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/tests/install.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index 713e03194b..3c6f6937ca 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -252,7 +252,7 @@ packages defined in installation-os." (make-marionette `(,(which #$(qemu-command system)) "-no-reboot" - "-m" "800" + "-m" "1200" #$@(cond ((string=? "ext4" installation-disk-image-file-system-type) #~("-drive" |