diff options
author | 2020-09-18 14:32:36 +0200 | |
---|---|---|
committer | 2020-09-18 14:33:04 +0200 | |
commit | a850195da5c24b5816359fe77cb6b6fed79bea19 (patch) | |
tree | 58491e4149ec1260c9d959aa227f0ec67e101756 /dev-lang/spidermonkey/spidermonkey-52.9.1_pre1-r2.ebuild | |
parent | dev-java/rxtx: restored *.diff files/patches (diff) | |
download | gentoo-a850195da5c24b5816359fe77cb6b6fed79bea19.tar.gz gentoo-a850195da5c24b5816359fe77cb6b6fed79bea19.tar.bz2 gentoo-a850195da5c24b5816359fe77cb6b6fed79bea19.zip |
dev-lang/spidermonkey: disabling tests in EOL versions
Tests are written against bundled ICU. Once system's ICU version
is newer than bundled ICU, tests are likely to fail because due to
changes in newer ICU (changed locales, changed format), expected
hardcoded results don't match anymore.
Disabling tests because these versions are already EOL and keeping
up with ICU in a rolling distribution is impossible with the limited
man power we have.
Bug: https://bugs.gentoo.org/737464
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-lang/spidermonkey/spidermonkey-52.9.1_pre1-r2.ebuild')
-rw-r--r-- | dev-lang/spidermonkey/spidermonkey-52.9.1_pre1-r2.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1-r2.ebuild b/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1-r2.ebuild index 7f328008d90..b6ca6c1760f 100644 --- a/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1-r2.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1-r2.ebuild @@ -19,7 +19,10 @@ SLOT="52" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 x86" IUSE="debug minimal +system-icu test" -RESTRICT="!test? ( test ) ia64? ( test )" +# Disable tests: +# Version is dead and most issues are related to the use of +# system's ICU. +RESTRICT="test" S="${WORKDIR}/${MY_P%.rc*}" BUILDDIR="${S}/jsobj" |