commit: 5e9e7bd557b276229672eea35743f38e6c27062e Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> AuthorDate: Wed Oct 14 20:30:34 2020 +0000 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> CommitDate: Wed Oct 14 20:30:38 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e9e7bd5
dev-lang/spidermonkey: skip typedarray-arg-set-values-same-buffer-other-type.js for big-endian Test typedarray-arg-set-values-same-buffer-other-type fails on big-endian platforms due to the issue in the test itself. The issue has been reported to test262 maintainers, until resolved the test is skipped. Closes: https://bugs.gentoo.org/749044 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org> dev-lang/spidermonkey/spidermonkey-68.12.0.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-lang/spidermonkey/spidermonkey-68.12.0.ebuild b/dev-lang/spidermonkey/spidermonkey-68.12.0.ebuild index 66fb961070c..92d6e2d3c10 100644 --- a/dev-lang/spidermonkey/spidermonkey-68.12.0.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-68.12.0.ebuild @@ -198,6 +198,10 @@ src_test() { KNOWN_TESTFAILURES+=( non262/Date/timeclip.js ) fi + if [[ $(tc-endian) == "big" ]] ; then + KNOWN_TESTFAILURES+=( test262/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-same-buffer-other-type.js ) + fi + echo "" > "${T}"/known_failures.list || die local KNOWN_TESTFAILURE
