diff options
| author | Mathieu Othacehe <othacehe@gnu.org> | 2020-06-30 14:31:45 +0200 | 
|---|---|---|
| committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-06-30 14:44:01 +0200 | 
| commit | 5e766fe5a2b19a33e1f2589ede37da674aada4c6 (patch) | |
| tree | 9d7a57066a67327b212131d8a044d2924c441c61 /gnu/tests/install.scm | |
| parent | 14cce84ca77f11b182ee2d5c3ed99271b2a74b53 (diff) | |
tests: install: Increase image size limit.
Commits 0eed77127592323d89f56c215a15374a1aaae110 and
614a1e3fa2d731d4719f03912b1b87fb4fd309cb caused a ~150M increase of the image
size. Increase the image size limit by 200M until the situation is addressed.
* gnu/tests/install.scm (%simple-installation-script,
%extlinux-gpt-installation-script, %simple-installation-script-for-/dev/vda,
%raid-root-installation-script, %encrypted-root-installation-script): Increase
image size limit by 200M.
Diffstat (limited to 'gnu/tests/install.scm')
| -rw-r--r-- | gnu/tests/install.scm | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index b2edfa5c22..9656e5f41f 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -163,7 +163,7 @@ export GUIX_BUILD_OPTIONS=--no-grafts  guix build isc-dhcp  parted --script /dev/vdb mklabel gpt \\    mkpart primary ext2 1M 3M \\ -  mkpart primary ext2 3M 1.4G \\ +  mkpart primary ext2 3M 1.6G \\    set 1 boot on \\    set 1 bios_grub on  mkfs.ext4 -L my-root /dev/vdb2 @@ -188,7 +188,7 @@ guix --version  export GUIX_BUILD_OPTIONS=--no-grafts  guix build isc-dhcp  parted --script /dev/vdb mklabel gpt \\ -  mkpart ext2 1M 1.4G \\ +  mkpart ext2 1M 1.6G \\    set 1 legacy_boot on  mkfs.ext4 -L my-root -O '^64bit' /dev/vdb1  mount /dev/vdb1 /mnt @@ -419,7 +419,7 @@ export GUIX_BUILD_OPTIONS=--no-grafts  guix build isc-dhcp  parted --script /dev/vda mklabel gpt \\    mkpart primary ext2 1M 3M \\ -  mkpart primary ext2 3M 1.4G \\ +  mkpart primary ext2 3M 1.6G \\    set 1 boot on \\    set 1 bios_grub on  mkfs.ext4 -L my-root /dev/vda2 @@ -631,8 +631,8 @@ guix --version  export GUIX_BUILD_OPTIONS=--no-grafts  parted --script /dev/vdb mklabel gpt \\    mkpart primary ext2 1M 3M \\ -  mkpart primary ext2 3M 1.4G \\ -  mkpart primary ext2 1.4G 2.8G \\ +  mkpart primary ext2 3M 1.6G \\ +  mkpart primary ext2 1.6G 3.2G \\    set 1 boot on \\    set 1 bios_grub on  yes | mdadm --create /dev/md0 --verbose --level=mirror --raid-devices=2 \\ @@ -658,7 +658,7 @@ by 'mdadm'.")                                                 %raid-root-os-source                                                 #:script                                                 %raid-root-installation-script -                                               #:target-size (* 2800 MiB))) +                                               #:target-size (* 3200 MiB)))                           (command (qemu-command/writable-image image)))        (run-basic-test %raid-root-os                        `(,@command) "raid-root-os"))))) @@ -719,7 +719,7 @@ export GUIX_BUILD_OPTIONS=--no-grafts  ls -l /run/current-system/gc-roots  parted --script /dev/vdb mklabel gpt \\    mkpart primary ext2 1M 3M \\ -  mkpart primary ext2 3M 1.4G \\ +  mkpart primary ext2 3M 1.6G \\    set 1 boot on \\    set 1 bios_grub on  echo -n " %luks-passphrase " | \\ | 
