From aa5a2482377b45a227143908449e5c91fc0c0560 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 1 Jun 2022 09:00:39 -0700 Subject: [PATCH] Bump timeouts in _setup_browser a bit more Slow on Rawhide updates. Signed-off-by: Adam Williamson --- tests/_setup_browser.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/_setup_browser.pm b/tests/_setup_browser.pm index 9fdef5ed..3981f439 100644 --- a/tests/_setup_browser.pm +++ b/tests/_setup_browser.pm @@ -15,12 +15,12 @@ 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", 160; + assert_script_run "dnf ${extraparams} -y install libglvnd-egl", 180; # 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", 160; + assert_script_run "dnf ${extraparams} -y install dejavu-sans-fonts dejavu-sans-mono-fonts dejavu-serif-fonts", 180; # since firefox-85.0-2, firefox doesn't seem to run without this - assert_script_run "dnf ${extraparams} -y install dbus-glib", 160; - assert_script_run "dnf ${extraparams} -y install firefox", 160; + assert_script_run "dnf ${extraparams} -y install dbus-glib", 180; + assert_script_run "dnf ${extraparams} -y install firefox", 180; } sub test_flags {