1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-01-07 09:43:09 +00:00

Restructure stuff a bit.

This commit is contained in:
Lukas Ruzicka 2023-03-22 12:31:48 +01:00
parent ed026cc235
commit 5e03c5aecd
2 changed files with 5 additions and 5 deletions

View File

@ -18,12 +18,9 @@ sub run {
my $self = shift;
unless (get_var("SUBVARIANT") eq "Silverblue") {
# Sometimes, after rollback, Software crashes. If it
# happens, let's restart it.
unless (check_screen("apps_run_software")) {
restart_application("software");
}
# Find the application.
find_application("mahjongg");
# Install the application.
install_application("mahjongg", "rpm");
wait_still_screen(10);

View File

@ -24,8 +24,11 @@ sub run {
restart_application("software");
}
# Perform all installations one after another.
find_application("mahjongg")
install_application("mahjongg", "rpm");
find_application("gvim");
install_application("gvim", "rpm");
find_application("emacs");
install_application("emacs", "rpm");
# Check that the installations have completed successfully.