mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-22 14:03:09 +00:00
Bump up some more DNF timeouts due to #1516990
All of these seem vulnerable. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
a0a63256d0
commit
e2beb4f046
@ -10,7 +10,7 @@ sub run {
|
|||||||
# use compose repo, disable u-t, etc.
|
# use compose repo, disable u-t, etc.
|
||||||
repo_setup();
|
repo_setup();
|
||||||
# install postgresql
|
# install postgresql
|
||||||
assert_script_run "dnf -y install postgresql", 120;
|
assert_script_run "dnf -y install postgresql", 160;
|
||||||
# wait for the server to be ready
|
# wait for the server to be ready
|
||||||
mutex_lock "db_ready";
|
mutex_lock "db_ready";
|
||||||
mutex_unlock "db_ready";
|
mutex_unlock "db_ready";
|
||||||
|
@ -10,8 +10,8 @@ sub run {
|
|||||||
if (get_var("UPGRADE")) {
|
if (get_var("UPGRADE")) {
|
||||||
assert_script_run 'dnf -y groupinstall "base-x"', 300;
|
assert_script_run 'dnf -y groupinstall "base-x"', 300;
|
||||||
# FIXME: this should probably be in base-x...X seems to fail without
|
# FIXME: this should probably be in base-x...X seems to fail without
|
||||||
assert_script_run 'dnf -y install libglvnd-egl', 120;
|
assert_script_run 'dnf -y install libglvnd-egl', 160;
|
||||||
assert_script_run 'dnf -y install firefox', 120;
|
assert_script_run 'dnf -y install firefox', 160;
|
||||||
}
|
}
|
||||||
# we're restarting firefox (instead of using the same one from
|
# we're restarting firefox (instead of using the same one from
|
||||||
# realmd_join_cockpit) so Firefox's trusted CA store refreshes and
|
# realmd_join_cockpit) so Firefox's trusted CA store refreshes and
|
||||||
|
@ -23,7 +23,7 @@ sub run {
|
|||||||
assert_script_run "echo 'monkeys123' | realm join --user=admin ipa001.domain.local", 300;
|
assert_script_run "echo 'monkeys123' | realm join --user=admin ipa001.domain.local", 300;
|
||||||
# set sssd debugging level higher (useful for debugging failures)
|
# set sssd debugging level higher (useful for debugging failures)
|
||||||
# optional as it's not really part of the test
|
# optional as it's not really part of the test
|
||||||
script_run "dnf -y install sssd-tools", 180;
|
script_run "dnf -y install sssd-tools", 220;
|
||||||
script_run "sss_debuglevel 6";
|
script_run "sss_debuglevel 6";
|
||||||
# if upgrade test, report that we're enrolled
|
# if upgrade test, report that we're enrolled
|
||||||
mutex_create('client_enrolled') if get_var("UPGRADE");
|
mutex_create('client_enrolled') if get_var("UPGRADE");
|
||||||
|
@ -19,10 +19,10 @@ sub run {
|
|||||||
# install a desktop and firefox so we can actually try it
|
# install a desktop and firefox so we can actually try it
|
||||||
assert_script_run "dnf ${extraparams} -y groupinstall 'base-x'", 300;
|
assert_script_run "dnf ${extraparams} -y groupinstall 'base-x'", 300;
|
||||||
# FIXME: this should probably be in base-x...X seems to fail without
|
# FIXME: this should probably be in base-x...X seems to fail without
|
||||||
assert_script_run "dnf ${extraparams} -y install libglvnd-egl", 120;
|
assert_script_run "dnf ${extraparams} -y install libglvnd-egl", 160;
|
||||||
# try to avoid random weird font selection happening
|
# try to avoid random weird font selection happening
|
||||||
assert_script_run "dnf ${extraparams} -y install dejavu-sans-fonts dejavu-sans-mono-fonts dejavu-serif-fonts", 120;
|
assert_script_run "dnf ${extraparams} -y install dejavu-sans-fonts dejavu-sans-mono-fonts dejavu-serif-fonts", 160;
|
||||||
assert_script_run "dnf ${extraparams} -y install firefox", 120;
|
assert_script_run "dnf ${extraparams} -y install firefox", 160;
|
||||||
start_cockpit(0);
|
start_cockpit(0);
|
||||||
# quit firefox (return to console)
|
# quit firefox (return to console)
|
||||||
send_key "ctrl-q";
|
send_key "ctrl-q";
|
||||||
|
Loading…
Reference in New Issue
Block a user