-
Notifications
You must be signed in to change notification settings - Fork 295
Disable grub timeout in SLES for SAP 16.0 tests on pvm_hmc #23193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
1619832
to
4377af5
Compare
Why do that only for SLES4SAP and only for ppc64le? IMHO the timeout should be disabled everywhere consistently |
I agree. We already did on qemu in fact, but left it as it was on the other |
But why keep it different then? I assume that sooner or later this will make problems and IMHO all those little differences make the analysis harder |
265c57b
to
69f902d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
ad60cbd
to
e0e6d69
Compare
The default 8s timeout can cause some tests on pvm_hmc backend to fail as `lib/sles4sap::reboot()` would call 2 times `lib/opensusebasetests::wait_grub()`, and 8s could be not enough time to assert the grub screen twice. This commit disables the grub timeout on SLES for SAP 16.0 installations by adding `stopOnBootMenu: true` in `data/sles4sap/agama/sles_sap_default_ppc64le.jsonnet` and also adds in the related schedules the module `installation/grub_test` to handle the grub screen before first boot. Related Ticket: https://jira.suse.com/browse/TEAM-10611
375ed1d
to
f8b00b8
Compare
The default 8s timeout can cause some tests on pvm_hmc backend to fail as
lib/sles4sap::reboot()
would call 2 timeslib/opensusebasetests::wait_grub()
, and 8s could be not enough time to assert the grub screen twice.This commit disables the grub timeout on SLES for SAP 16.0 installations by adding
stopOnBootMenu
indata/sles4sap/agama/sles_sap_default_ppc64le.jsonnet
and also adds on the related schedules the moduleinstallation/grub_test
to handle the grub screen before first boot.