Skip to content

Commit

Permalink
tests: do some adjustments fixing the firefox crash under wayland
Browse files Browse the repository at this point in the history
  • Loading branch information
KKoukiou committed Oct 22, 2024
1 parent 579a13f commit b8dd03c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 4 additions & 0 deletions firefox-theme/default/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,7 @@ user_pref("datareporting.healthreport.uploadEnabled", false);
user_pref("datareporting.policy.dataSubmissionEnabled", false);
user_pref("toolkit.telemetry.unified", false);
user_pref("trailhead.firstrun.didSeeAboutWelcome", true);

// Disable hardware acceleration, we are doomed - firefox crashed under wayland
user_pref("browser.preferences.defaultPerformanceSettings.enabled", false);
user_pref("layers.acceleration.disabled", true);
2 changes: 1 addition & 1 deletion test/machine_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def start(self):
f"{boot_arg} "
f"--name {self.label} "
f"--os-variant=detect=on "
"--memory 4096 "
"--memory 4096 --vcpus 4 "
"--noautoconsole "
f"--graphics vnc,listen={self.ssh_address} "
"--extra-args "
Expand Down
4 changes: 1 addition & 3 deletions test/run
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@ esac
# test runs in kernel_t context and triggers massive amounts of SELinux
# denials; SELinux gets disabled, but would still trigger unexpected messages
# we create huge VMs, so we need to reduce parallelism on CI
if [ -z "${TEST_JOBS-}" ]; then
TEST_JOBS=4
fi
TEST_JOBS=4
if [ -z "${TEST_OS-}" ]; then
TEST_OS=fedora-rawhide-boot
fi
Expand Down

0 comments on commit b8dd03c

Please sign in to comment.