summary refs log tree commit diff
path: root/nixos/tests/installer.nix
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2020-09-05 10:32:42 +0200
committerVladimír Čunát <v@cunat.cz>2020-09-05 19:29:38 +0200
commit6eea644749f8899a5760c6c0a59fac9ea6f4c06f (patch)
tree8fa35c95e01c28333f8e7657ba85a3c18bbfeba0 /nixos/tests/installer.nix
parentb89f1226cc5e39d5ec49018d94e2f84a402fae75 (diff)
downloadnixpkgs-6eea644749f8899a5760c6c0a59fac9ea6f4c06f.tar
nixpkgs-6eea644749f8899a5760c6c0a59fac9ea6f4c06f.tar.gz
nixpkgs-6eea644749f8899a5760c6c0a59fac9ea6f4c06f.tar.bz2
nixpkgs-6eea644749f8899a5760c6c0a59fac9ea6f4c06f.tar.lz
nixpkgs-6eea644749f8899a5760c6c0a59fac9ea6f4c06f.tar.xz
nixpkgs-6eea644749f8899a5760c6c0a59fac9ea6f4c06f.tar.zst
nixpkgs-6eea644749f8899a5760c6c0a59fac9ea6f4c06f.zip
nixos/tests/installer swraid: increase partition size
We apparently didn't fit anymore.  I don't think this test is meant
to (also) check closure size.

Note: as of this commit, the test is blocked by a fontconfig problem,
so I tested with that merge temporarily reverted.
Diffstat (limited to 'nixos/tests/installer.nix')
-rw-r--r--nixos/tests/installer.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index bd1bf733153..df89949074f 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -633,10 +633,10 @@ in {
           + " mklabel msdos"
           + " mkpart primary ext2 1M 100MB"  # /boot
           + " mkpart extended 100M -1s"
-          + " mkpart logical 102M 2102M"  # md0 (root), first device
-          + " mkpart logical 2103M 4103M"  # md0 (root), second device
-          + " mkpart logical 4104M 4360M"  # md1 (swap), first device
-          + " mkpart logical 4361M 4617M",  # md1 (swap), second device
+          + " mkpart logical 102M 3102M"  # md0 (root), first device
+          + " mkpart logical 3103M 6103M"  # md0 (root), second device
+          + " mkpart logical 6104M 6360M"  # md1 (swap), first device
+          + " mkpart logical 6361M 6617M",  # md1 (swap), second device
           "udevadm settle",
           "ls -l /dev/vda* >&2",
           "cat /proc/partitions >&2",