diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-09-03 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2024-09-01 02:00:00 +0200 |
commit | b58516ccd1ed9ccbf84e137af62fa8ec67fa85e1 (patch) | |
tree | 597415c153452b6d44e26266630718bdfcbf2796 | |
parent | 82174b2742c2a59fd7959ba9acc80edd6f93d9f7 (diff) |
tests: Increase installation VM memory size.
256 MiB isn't enough to decompress a modern Zstd-compressed initramfs.
* gnu/tests/install.scm (qemu-command*): Increase default MEMORY-SIZE
to 384 (MiB).
-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 36dbd9111f..d0efc44445 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -358,7 +358,7 @@ such as for RAID systems." (use-modules (guix build utils)) (find-files #$images-dir))))))) -(define* (qemu-command* images #:key (uefi-support? #f) (memory-size 256)) +(define* (qemu-command* images #:key (uefi-support? #f) (memory-size 384)) "Return as a monadic value the command to run QEMU with a writable overlay on top of IMAGES, a list of disk images. The QEMU VM has access to MEMORY-SIZE MiB of RAM." |