mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
www-client/firefox: add some tests
Some relatively quick unittests to catch issues. Signed-off-by: Alfred Wingate <parona@protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/40718 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
committed by
Joonas Niilola
parent
0126aac12a
commit
25401ec1e1
@@ -82,7 +82,7 @@ KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
|
||||
|
||||
IUSE="+clang dbus debug eme-free hardened hwaccel jack libproxy pgo pulseaudio sndio selinux"
|
||||
IUSE+=" +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-jpeg +system-libevent"
|
||||
IUSE+=" +system-libvpx system-png +system-webp valgrind wayland wifi +X"
|
||||
IUSE+=" +system-libvpx system-png +system-webp test valgrind wayland wifi +X"
|
||||
|
||||
# Firefox-only IUSE
|
||||
IUSE+=" +gmp-autoupdate gnome-shell +jumbo-build openh264 +telemetry wasm-sandbox"
|
||||
@@ -99,6 +99,8 @@ REQUIRED_USE="|| ( X wayland )
|
||||
wifi? ( dbus )
|
||||
"
|
||||
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
FF_ONLY_DEPEND="!www-client/firefox:0
|
||||
selinux? ( sec-policy/selinux-mozilla )"
|
||||
BDEPEND="${PYTHON_DEPS}
|
||||
@@ -794,7 +796,6 @@ src_configure() {
|
||||
--disable-legacy-profile-creation \
|
||||
--disable-parental-controls \
|
||||
--disable-strip \
|
||||
--disable-tests \
|
||||
--disable-updater \
|
||||
--disable-wmf \
|
||||
--enable-negotiateauth \
|
||||
@@ -1071,6 +1072,8 @@ src_configure() {
|
||||
mozconfig_add_options_mk '-telemetry setting' "MOZ_TELEMETRY_REPORTING=0"
|
||||
fi
|
||||
|
||||
mozconfig_use_enable test tests
|
||||
|
||||
# Disable notification when build system has finished
|
||||
export MOZ_NOSPAM=1
|
||||
|
||||
@@ -1152,6 +1155,29 @@ src_compile() {
|
||||
${virtx_cmd} ./mach build --verbose || die
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# https://firefox-source-docs.mozilla.org/testing/automated-testing/index.html
|
||||
local -a failures=()
|
||||
|
||||
# Some tests respect this
|
||||
local -x MOZ_HEADLESS=1
|
||||
|
||||
# Check testing/mach_commands.py
|
||||
einfo "Testing with cppunittest ..."
|
||||
./mach cppunittest
|
||||
local ret=$?
|
||||
if [[ ${ret} -ne 0 ]]; then
|
||||
eerror "Test suite cppunittest failed with error code ${ret}"
|
||||
failures+=( cppunittest )
|
||||
fi
|
||||
|
||||
if [[ ${#failures} -eq 0 ]]; then
|
||||
einfo "Test suites succeeded"
|
||||
else
|
||||
die "Test suites failed: ${failures[@]}"
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# xpcshell is getting called during install
|
||||
pax-mark m \
|
||||
|
||||
Reference in New Issue
Block a user