summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firefox.spec9
1 files changed, 9 insertions, 0 deletions
diff --git a/firefox.spec b/firefox.spec
index 48d51cd..62db459 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -4,6 +4,15 @@
%global build_with_clang 0
%global build_with_asan 0
%global run_firefox_tests 1
+# Temporary disable tests on Rawhide/arm/i686 due to failures
+%if 0%{?fedora} > 33
+%ifarch armv7hl
+%global run_firefox_tests 0
+%endif
+%ifarch %{ix86}
+%global run_firefox_tests 0
+%endif
+%endif
%global test_offscreen 1
%global test_on_wayland 0
%global create_debuginfo 1
bgstack15