summaryrefslogtreecommitdiff
path: root/gnu/tests
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/tests')
-rw-r--r--gnu/tests/install.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm
index 2da3192d2f0..faaad0470cc 100644
--- a/gnu/tests/install.scm
+++ b/gnu/tests/install.scm
@@ -240,12 +240,14 @@ reboot\n")
240 (installation-image-type 'mbr-raw) 240 (installation-image-type 'mbr-raw)
241 (install-size 'guess) 241 (install-size 'guess)
242 (target-size (* 2200 MiB)) 242 (target-size (* 2200 MiB))
243 (memory "1200")
243 (number-of-disks 1)) 244 (number-of-disks 1))
244 "Run SCRIPT (a shell script following the system installation procedure) in 245 "Run SCRIPT (a shell script following the system installation procedure) in
245OS to install TARGET-OS. Return the VM disk images of TARGET-SIZE bytes 246OS to install TARGET-OS. Return the VM disk images of TARGET-SIZE bytes
246containing the installed system. PACKAGES is a list of packages added to OS. 247containing the installed system. PACKAGES is a list of packages added to OS.
247NUMBER-OF-DISKS can be used to specify a number of disks different than one, 248NUMBER-OF-DISKS can be used to specify a number of disks different than one,
248such as for RAID systems." 249such as for RAID systems. The VM running the installation is ran with -m
250MEMORY."
249 (mlet* %store-monad ((_ (set-grafting #f)) 251 (mlet* %store-monad ((_ (set-grafting #f))
250 (system (current-system)) 252 (system (current-system))
251 253
@@ -300,7 +302,7 @@ such as for RAID systems."
300 "-cpu" "host") 302 "-cpu" "host")
301 '()) 303 '())
302 "-no-reboot" 304 "-no-reboot"
303 "-m" "1200" 305 "-m" #$memory
304 ,@(if #$uefi-firmware 306 ,@(if #$uefi-firmware
305 '("-bios" #$uefi-firmware) 307 '("-bios" #$uefi-firmware)
306 '()) 308 '())
@@ -2090,6 +2092,7 @@ build (current-guix) and then store a couple of full system images.")
2090 (encrypted? #f) 2092 (encrypted? #f)
2091 (uefi-support? #f) 2093 (uefi-support? #f)
2092 target-os 2094 target-os
2095 (installer-memory "2048")
2093 (install-size 'guess) 2096 (install-size 'guess)
2094 (target-size (* 2200 MiB))) 2097 (target-size (* 2200 MiB)))
2095 (system-test 2098 (system-test
@@ -2104,6 +2107,7 @@ build (current-guix) and then store a couple of full system images.")
2104 #:uefi-support? uefi-support? 2107 #:uefi-support? uefi-support?
2105 #:install-size install-size 2108 #:install-size install-size
2106 #:target-size target-size 2109 #:target-size target-size
2110 #:memory installer-memory
2107 #:installation-image-type 2111 #:installation-image-type
2108 'uncompressed-iso9660 2112 'uncompressed-iso9660
2109 #:gui-test 2113 #:gui-test