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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C4C11158013 for ; Sat, 16 Dec 2023 08:05:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D38B32BC037; Sat, 16 Dec 2023 08:05:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A4DE02BC037 for ; Sat, 16 Dec 2023 08:05:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ADEFB335D1C for ; Sat, 16 Dec 2023 08:05:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49AA5123C for ; Sat, 16 Dec 2023 08:05:18 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1702713855.3f591a8e5cd44a5a290534b50efb9fc3782aa846.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/spidermonkey/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/spidermonkey/spidermonkey-115.3.1.ebuild X-VCS-Directories: dev-lang/spidermonkey/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 3f591a8e5cd44a5a290534b50efb9fc3782aa846 X-VCS-Branch: master Date: Sat, 16 Dec 2023 08:05:18 +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: 907d7fdb-01fc-4a0b-9785-07068c30b5d9 X-Archives-Hash: 4557194201e3d952ae217171f201a26e commit: 3f591a8e5cd44a5a290534b50efb9fc3782aa846 Author: Joonas Niilola gentoo org> AuthorDate: Sat Dec 16 08:04:15 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Dec 16 08:04:15 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f591a8e dev-lang/spidermonkey: exclude some broken tests with 115.3.1 on x86 Signed-off-by: Joonas Niilola gentoo.org> dev-lang/spidermonkey/spidermonkey-115.3.1.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-lang/spidermonkey/spidermonkey-115.3.1.ebuild b/dev-lang/spidermonkey/spidermonkey-115.3.1.ebuild index f87e5754bafd..4a1e2f2e3586 100644 --- a/dev-lang/spidermonkey/spidermonkey-115.3.1.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-115.3.1.ebuild @@ -427,6 +427,13 @@ src_test() { cp "${FILESDIR}"/spidermonkey-${SLOT}-known-test-failures.txt "${T}"/known_failures.list || die + if use x86 ; then + echo "non262/Date/timeclip.js" >> "${T}"/known_failures.list + echo "test262/built-ins/Date/UTC/fp-evaluation-order.js" >> "${T}"/known_failures.list + echo "test262/language/types/number/S8.5_A2.1.js" >> "${T}"/known_failures.list + echo "test262/language/types/number/S8.5_A2.2.js" >> "${T}"/known_failures.list + fi + ${EPYTHON} \ "${S}"/tests/jstests.py -d -s -t 1800 --wpt=disabled --no-progress \ --exclude-file="${T}"/known_failures.list \