From 78af6bfb05cdb39658dce587103df191fc9b7210 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 26 Jan 2021 18:19:48 -0800 Subject: [PATCH] Install dbus-glib when setting up Firefox at console Seems to be needed since 85.0-2. See discussion at https://bodhi.fedoraproject.org/updates/FEDORA-2021-1d4180de72 . Signed-off-by: Adam Williamson --- tests/_setup_browser.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/_setup_browser.pm b/tests/_setup_browser.pm index a7d04bee..91674a74 100644 --- a/tests/_setup_browser.pm +++ b/tests/_setup_browser.pm @@ -19,6 +19,8 @@ sub run { 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", 160; + # 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; }