mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-12-04 19:13:08 +00:00
Add a workaround for #2329587, drop retry count again
This workaround is tested on stg and seems to work. If we see the grey screen, go to a console and reboot from there. Don't do this on any other test as it might interfere with bootloader param entry. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
eb4e78f0d8
commit
9608e7945b
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"xpos": 9,
|
||||||
|
"ypos": 9,
|
||||||
|
"width": 1003,
|
||||||
|
"height": 745,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"anaconda_grey_stuck"
|
||||||
|
]
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 190 B |
@ -399,7 +399,6 @@
|
|||||||
"NO_ADVISORY_POST": "1",
|
"NO_ADVISORY_POST": "1",
|
||||||
"PACKAGE_SET": "default",
|
"PACKAGE_SET": "default",
|
||||||
"PARALLEL_WITH": "support_server@%ARCH_BASE_MACHINE%",
|
"PARALLEL_WITH": "support_server@%ARCH_BASE_MACHINE%",
|
||||||
"RETRY": "5",
|
|
||||||
"WORKER_CLASS": "tap"
|
"WORKER_CLASS": "tap"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -145,6 +145,14 @@ sub run {
|
|||||||
unless (@actions) {
|
unless (@actions) {
|
||||||
unless (get_var("MEMCHECK")) {
|
unless (get_var("MEMCHECK")) {
|
||||||
assert_and_click "anaconda_install_done";
|
assert_and_click "anaconda_install_done";
|
||||||
|
if (get_var("TEST") eq 'install_default_update_netinst') {
|
||||||
|
wait_still_screen 10;
|
||||||
|
if (check_screen "anaconda_grey_stuck") {
|
||||||
|
record_soft_failure 'looks like anaconda shutdown stuck - https://bugzilla.redhat.com/show_bug.cgi?id=2329587';
|
||||||
|
$self->root_console(timeout => 30);
|
||||||
|
type_string "reboot\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return undef;
|
return undef;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user