tests: install: Fix device usage.
This is a follow-up of a860eddbbd
. Guided
installation tests are now run from an ISO image. Hence the main block device
is vda and not vdb anymore.
* gnu/tests/install.scm (installation-target-os-for-gui-tests): Use
%minimal-os-on-vda instead of %minimal-os.
(%minimal-os-on-vda): Make sure that it replicates the config of %minimal-os.
master
parent
e9f93cd5f7
commit
c537d2bcb7
|
@ -387,6 +387,7 @@ per %test-installed-os, this test is expensive in terms of CPU and storage.")
|
|||
(services (cons (service marionette-service-type
|
||||
(marionette-configuration
|
||||
(imported-modules '((gnu services herd)
|
||||
(guix build utils)
|
||||
(guix combinators)))))
|
||||
%base-services))))
|
||||
|
||||
|
@ -1058,7 +1059,7 @@ build (current-guix) and then store a couple of full system images.")
|
|||
(define* (installation-target-os-for-gui-tests
|
||||
#:key (encrypted? #f))
|
||||
(operating-system
|
||||
(inherit %minimal-os)
|
||||
(inherit %minimal-os-on-vda)
|
||||
(users (append (list (user-account
|
||||
(name "alice")
|
||||
(comment "Bob's sister")
|
||||
|
@ -1076,7 +1077,7 @@ build (current-guix) and then store a couple of full system images.")
|
|||
;; encryption support.
|
||||
(swap-devices (if encrypted? '() '("/dev/vda2")))
|
||||
(services (cons (service dhcp-client-service-type)
|
||||
(operating-system-user-services %minimal-os)))))
|
||||
(operating-system-user-services %minimal-os-on-vda)))))
|
||||
|
||||
(define* (installation-target-desktop-os-for-gui-tests
|
||||
#:key (encrypted? #f))
|
||||
|
|
Reference in New Issue