summaryrefslogtreecommitdiff
path: root/run-tests-wayland
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2021-03-23 10:29:22 +0100
committerMartin Stransky <stransky@redhat.com>2021-03-23 10:29:22 +0100
commit91add2d4f7452bdf7e32923716e3004646cdb7dd (patch)
treee93e4d32675746905325c0f4771882a6ccdcc113 /run-tests-wayland
parentEnabled arm (diff)
downloadlibrewolf-fedora-ff-91add2d4f7452bdf7e32923716e3004646cdb7dd.tar.gz
librewolf-fedora-ff-91add2d4f7452bdf7e32923716e3004646cdb7dd.tar.bz2
librewolf-fedora-ff-91add2d4f7452bdf7e32923716e3004646cdb7dd.zip
Updated to 87.0
Diffstat (limited to 'run-tests-wayland')
-rwxr-xr-xrun-tests-wayland14
1 files changed, 7 insertions, 7 deletions
diff --git a/run-tests-wayland b/run-tests-wayland
index d1b7cdb..e526115 100755
--- a/run-tests-wayland
+++ b/run-tests-wayland
@@ -19,19 +19,19 @@ RUN_MOCHITEST=0
RUN_CRASHTEST=0
SELECTED_TEST=$2
-if [ $SELECTED_TEST = "xpc" ] ; then
+if [ "$SELECTED_TEST" = "xpc" ] ; then
RUN_XPCSHELL_TEST=1
-elif [ $SELECTED_TEST = "ref" ] ; then
+elif [ "$SELECTED_TEST" = "ref" ] ; then
RUN_REFTEST=1
-elif [ $SELECTED_TEST = "moch" ] ; then
+elif [ "$SELECTED_TEST" = "moch" ] ; then
RUN_MOCHITEST=1
-elif [ $SELECTED_TEST = "crash" ] ; then
+elif [ "$SELECTED_TEST" = "crash" ] ; then
RUN_CRASHTEST=1
else
- RUN_XPCSHELL_TEST=1
+ RUN_XPCSHELL_TEST=0
RUN_REFTEST=1
- RUN_MOCHITEST=1
- RUN_CRASHTEST=1
+ RUN_MOCHITEST=0
+ RUN_CRASHTEST=0
fi
MACH_USE_SYSTEM_PYTHON=1
bgstack15