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:
Adam Williamson 2017-11-23 16:01:58 -08:00
parent a0a63256d0
commit e2beb4f046
4 changed files with 7 additions and 7 deletions

View File

@ -10,7 +10,7 @@ sub run {
# use compose repo, disable u-t, etc.
repo_setup();
# 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
mutex_lock "db_ready";
mutex_unlock "db_ready";

View File

@ -10,8 +10,8 @@ sub run {
if (get_var("UPGRADE")) {
assert_script_run 'dnf -y groupinstall "base-x"', 300;
# 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 firefox', 120;
assert_script_run 'dnf -y install libglvnd-egl', 160;
assert_script_run 'dnf -y install firefox', 160;
}
# we're restarting firefox (instead of using the same one from
# realmd_join_cockpit) so Firefox's trusted CA store refreshes and

View File

@ -23,7 +23,7 @@ sub run {
assert_script_run "echo 'monkeys123' | realm join --user=admin ipa001.domain.local", 300;
# set sssd debugging level higher (useful for debugging failures)
# 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";
# if upgrade test, report that we're enrolled
mutex_create('client_enrolled') if get_var("UPGRADE");

View File

@ -19,10 +19,10 @@ sub run {
# install a desktop and firefox so we can actually try it
assert_script_run "dnf ${extraparams} -y groupinstall 'base-x'", 300;
# 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
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 firefox", 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", 160;
start_cockpit(0);
# quit firefox (return to console)
send_key "ctrl-q";