diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2017-10-29 19:51:42 +0100 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2017-10-30 09:12:56 +0100 |
commit | 91496dfc9a4c3a708b5c2604fad3e42e101fea04 (patch) | |
tree | a9f523591fc7f0b0889f4737e670130697f51dbe | |
parent | 73f71bc9b76a86715d8fb0f5377aa5536514b979 (diff) | |
download | patches-91496dfc9a4c3a708b5c2604fad3e42e101fea04.tar patches-91496dfc9a4c3a708b5c2604fad3e42e101fea04.tar.gz |
tests: install: Estimate the installation system disk size.
1500 MiB are too small for a current system, thus let
system-disk-image estimate the required size.
* gnu/tests/install.scm: (run-install): Pass "#:disk-image-size
'guess" to system-disk-image.
-rw-r--r-- | gnu/tests/install.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index d0cc08f431..a80c520ecc 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -219,7 +219,7 @@ packages defined in installation-os." (image (system-disk-image (operating-system-with-gc-roots os (list target)) - #:disk-image-size (* 1500 MiB) + #:disk-image-size 'guess #:file-system-type installation-disk-image-file-system-type))) (define install |