summaryrefslogtreecommitdiff
path: root/run-tests-wayland
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2021-04-07 22:06:27 +0200
committerMartin Stransky <stransky@redhat.com>2021-04-07 22:06:27 +0200
commit05b9a9097b74c5f4e5522c80d5eb8f5b346284e2 (patch)
treefac3329b08d774814700e9df65171aba35cbd0f7 /run-tests-wayland
parentEnabled xpcshell/crashtests on Wayland (diff)
downloadlibrewolf-fedora-ff-05b9a9097b74c5f4e5522c80d5eb8f5b346284e2.tar.gz
librewolf-fedora-ff-05b9a9097b74c5f4e5522c80d5eb8f5b346284e2.tar.bz2
librewolf-fedora-ff-05b9a9097b74c5f4e5522c80d5eb8f5b346284e2.zip
Added wayland focus workaround - mzbz#1703657
Diffstat (limited to 'run-tests-wayland')
-rwxr-xr-xrun-tests-wayland4
1 files changed, 2 insertions, 2 deletions
diff --git a/run-tests-wayland b/run-tests-wayland
index 7e69469..a3dd095 100755
--- a/run-tests-wayland
+++ b/run-tests-wayland
@@ -3,7 +3,7 @@
set -x
-RUN_XPCSHELL_TEST=1
+RUN_XPCSHELL_TEST=0
RUN_REFTEST=1
RUN_MOCHITEST=0
RUN_CRASHTEST=1
@@ -42,7 +42,7 @@ if [ $RUN_XPCSHELL_TEST -ne 0 ] ; then
fi
# Basic render testing
-export TEST_PARAMS="--setpref reftest.ignoreWindowSize=true"
+export TEST_PARAMS="--setpref reftest.ignoreWindowSize=true --setpref widget.wayland-focus-workaroud=true"
export TEST_FLAVOUR=""
if [ $RUN_REFTEST -ne 0 ] ; then
./mach reftest --marionette localhost:$(($(($RANDOM))+2000)) $TEST_PARAMS 2>&1 | tee $TEST_DIR/reftest$TEST_FLAVOUR
bgstack15