tests: install: Increase root partition size.

1.2G had become slightly too small on x86_64.
This is a followup to 8dfb0c969e.

* gnu/tests/install.scm (%simple-installation-script)
(%extlinux-gpt-installation-script)
(%simple-installation-script-for-/dev/vda): Switch from 1.2G to 1.4G.
This commit is contained in:
Ludovic Courtès 2019-11-06 12:11:40 +01:00
parent 81ffe63773
commit 198a7ac02f
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -138,7 +138,7 @@ (define %simple-installation-script
guix build isc-dhcp
parted --script /dev/vdb mklabel gpt \\
mkpart primary ext2 1M 3M \\
mkpart primary ext2 3M 1.2G \\
mkpart primary ext2 3M 1.4G \\
set 1 boot on \\
set 1 bios_grub on
mkfs.ext4 -L my-root /dev/vdb2
@ -163,7 +163,7 @@ (define %extlinux-gpt-installation-script
export GUIX_BUILD_OPTIONS=--no-grafts
guix build isc-dhcp
parted --script /dev/vdb mklabel gpt \\
mkpart ext2 1M 1.2G \\
mkpart ext2 1M 1.4G \\
set 1 legacy_boot on
mkfs.ext4 -L my-root -O '^64bit' /dev/vdb1
mount /dev/vdb1 /mnt
@ -365,7 +365,7 @@ (define %simple-installation-script-for-/dev/vda
guix build isc-dhcp
parted --script /dev/vda mklabel gpt \\
mkpart primary ext2 1M 3M \\
mkpart primary ext2 3M 1.2G \\
mkpart primary ext2 3M 1.4G \\
set 1 boot on \\
set 1 bios_grub on
mkfs.ext4 -L my-root /dev/vda2