mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-12-04 19:13:08 +00:00
work around rhbz #2329581 (installer boot hang till key pressed)
Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
1eb603e63d
commit
62ec56636b
@ -199,7 +199,13 @@ sub run {
|
||||
}
|
||||
}
|
||||
# wait for anaconda to appear
|
||||
assert_screen ["anaconda_select_install_lang", "anaconda_webui_welcome"], 300;
|
||||
unless (check_screen ["anaconda_select_install_lang", "anaconda_webui_welcome"], 300) {
|
||||
# may be hitting https://bugzilla.redhat.com/show_bug.cgi?id=2329581,
|
||||
# try pressing a key
|
||||
send_key "spc";
|
||||
assert_screen ["anaconda_select_install_lang", "anaconda_webui_welcome"], 300;
|
||||
record_soft_failure "boot hung until key pressed - #2329581";
|
||||
}
|
||||
# on webUI path we are done now, also set a var so later
|
||||
# tests know if we're on the webUI path
|
||||
if (match_has_tag "anaconda_webui_welcome") {
|
||||
|
Loading…
Reference in New Issue
Block a user