From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 44917138359 for ; Wed, 14 Oct 2020 20:30:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E154E0909; Wed, 14 Oct 2020 20:30:50 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 876F4E0909 for ; Wed, 14 Oct 2020 20:30:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 67B05340E56 for ; Wed, 14 Oct 2020 20:30:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 121E338E for ; Wed, 14 Oct 2020 20:30:48 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1602707438.5e9e7bd557b276229672eea35743f38e6c27062e.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/spidermonkey/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/spidermonkey/spidermonkey-68.12.0.ebuild X-VCS-Directories: dev-lang/spidermonkey/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 5e9e7bd557b276229672eea35743f38e6c27062e X-VCS-Branch: master Date: Wed, 14 Oct 2020 20:30:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0196125d-4e28-44c3-b680-0b353926d972 X-Archives-Hash: c23ccf55499a609062d7334cf32bd535 commit: 5e9e7bd557b276229672eea35743f38e6c27062e Author: Thomas Deutschmann gentoo org> AuthorDate: Wed Oct 14 20:30:34 2020 +0000 Commit: Thomas Deutschmann gentoo 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 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