summaryrefslogtreecommitdiff
path: root/gnu/tests/reconfigure.scm
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2021-12-23 10:47:11 +0100
committerMathieu Othacehe <othacehe@gnu.org>2021-12-23 10:54:01 +0100
commit7682145b9b05a500a3a6509960be22b865ca4154 (patch)
treeda02f67e0f02f53baa19b7520855a7246a6c4ca0 /gnu/tests/reconfigure.scm
parentc717f27c5ffa26ab513d652930c3c92bcedfdc26 (diff)
downloadguix-patches-7682145b9b05a500a3a6509960be22b865ca4154.tar
guix-patches-7682145b9b05a500a3a6509960be22b865ca4154.tar.gz
tests: reconfigure: Fix it.
* gnu/tests/reconfigure.scm (run-install-bootloader-test): Use a non volatile VM so that a bootloader configuration file is installed.
Diffstat (limited to 'gnu/tests/reconfigure.scm')
-rw-r--r--gnu/tests/reconfigure.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/tests/reconfigure.scm b/gnu/tests/reconfigure.scm
index 2fd7c6854d..ec845fe4b0 100644
--- a/gnu/tests/reconfigure.scm
+++ b/gnu/tests/reconfigure.scm
@@ -189,7 +189,9 @@ bootloader's configuration file."
#:imported-modules '((gnu services herd)
(guix combinators))))
- (define vm (virtual-machine os))
+ (define vm (virtual-machine
+ (operating-system os)
+ (volatile? #f)))
(define (test script)
(with-imported-modules '((gnu build marionette))