diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2024-02-21 02:13:22 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2024-02-21 15:20:07 +0300 |
commit | fa222331bd798dc2afc09efeee0bb197eb6de22b (patch) | |
tree | 0abac9107b1941de57a7bc46cfc338572956e6d7 /gnu/tests | |
parent | afdcba78558bd7a33f517716e69bb9494297064d (diff) |
tests: install: Fix encrypted-root-not-boot-os test.
Fix build failure caused by lack of free disk space.
* gnu/tests/install.scm (%test-encrypted-root-not-boot-os): Increase the root
partition to 1600 MiB.
Change-Id: I9f8378c37743ae8e59a72228b9e8bdbad93b4473
Diffstat (limited to 'gnu/tests')
-rw-r--r-- | gnu/tests/install.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index f9e766e532..16da320000 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -1194,7 +1194,9 @@ store a couple of full system images.") ((images (run-install %encrypted-root-not-boot-os %encrypted-root-not-boot-os-source #:script - %encrypted-root-not-boot-installation-script)) + %encrypted-root-not-boot-installation-script + #:target-size + (* 1600 MiB))) (command (qemu-command* images))) (run-basic-test %encrypted-root-not-boot-os command "encrypted-root-not-boot-os" |