summaryrefslogtreecommitdiff
path: root/gnu/tests
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
parentc717f27c5ffa26ab513d652930c3c92bcedfdc26 (diff)
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')
-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 2fd7c6854d1..ec845fe4b06 100644
--- a/gnu/tests/reconfigure.scm
+++ b/gnu/tests/reconfigure.scm
@@ -189,7 +189,9 @@ bootloader's configuration file."
189 #:imported-modules '((gnu services herd) 189 #:imported-modules '((gnu services herd)
190 (guix combinators)))) 190 (guix combinators))))
191 191
192 (define vm (virtual-machine os)) 192 (define vm (virtual-machine
193 (operating-system os)
194 (volatile? #f)))
193 195
194 (define (test script) 196 (define (test script)
195 (with-imported-modules '((gnu build marionette)) 197 (with-imported-modules '((gnu build marionette))