Mathieu Othacehe writes: Hi, > The ppm stuff is just about keeping screenshots around to debug any test > failures. Ok. In any case we can see about that later. > According to the log that you sent, I would say that the issue > is a mismatch between the installation step that is expected by the > marionette and the actual installation step: > > pattern: ((quote input) ((quote title) "System administrator password") ((quote text) _) ((quote default) _)). > sexp: (list-selection (title "Kernel") (multiple-choices? #f) (items ("Hurd" "Linux Libre"))). > > > The system administrator password page is expected but the kernel > selection page is sent. Ah, the test combines host-name and users together, makes sense. Kind of obvious when you see it :) > It seems that you have chosen to display the Kernel selection page > between the host-name page and the network selection page. I guess that > by moving the Kernel step here: > > ;; Prompt for users (name, group and home directory). > (installer-step > (id 'user) > (description (G_ "User creation")) > (compute (lambda _ > ((installer-user-page current-installer)))) > (configuration-formatter users->configuration)) > > -> Kernel step > > ;; Ask the user to choose one or many desktop environment(s). > (installer-step > (id 'services) > (description (G_ "Services")) > (compute (lambda _ > ((installer-services-page current-installer)))) > (configuration-formatter system-services->configuration)) > > the test would match with the actual installation step. Good call. > Hope that will help, It does thanks; test passed! --8<---------------cut here---------------start------------->8--- make check-system TESTS="gui-installed-os" ... successfully built /gnu/store/68yvz94hgnicavcps2i96wpddsygq9fz-gui-installed-os.drv /gnu/store/84n7zjm5l41m279i72cfp7z0cxa9h20p-gui-installed-os --8<---------------cut here---------------end--------------->8--- Find v2 attached; as only this patch has changed. Greetings, Janneke