diff options
| author | Rutherther <rutherther@ditigal.xyz> | 2026-02-09 08:01:42 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-04-29 13:09:26 +0200 |
| commit | d79791dcd90b71b74f02e56cd127d603e7a4033a (patch) | |
| tree | a6f55a4f3ed53d89350ea78792ca2096971cb331 /gnu | |
| parent | 43476286a4aec3ae76549893edc1e4c270d903c6 (diff) | |
tests: install: Increase memory for installation of desktops.
The memory requirements seem to have increased, the test now consistently
fails with 1.2 GB.
Change-Id: I766cbe75fa6f09e513157f6f9e954dd2502d8c7a
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Merges: #6248
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/tests/install.scm | 8 |
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 |
| 245 | OS to install TARGET-OS. Return the VM disk images of TARGET-SIZE bytes | 246 | OS to install TARGET-OS. Return the VM disk images of TARGET-SIZE bytes |
| 246 | containing the installed system. PACKAGES is a list of packages added to OS. | 247 | containing the installed system. PACKAGES is a list of packages added to OS. |
| 247 | NUMBER-OF-DISKS can be used to specify a number of disks different than one, | 248 | NUMBER-OF-DISKS can be used to specify a number of disks different than one, |
| 248 | such as for RAID systems." | 249 | such as for RAID systems. The VM running the installation is ran with -m |
| 250 | MEMORY." | ||
| 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 |
