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 3F3C2158015 for ; Wed, 27 Dec 2023 08:14:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 356482BC058; Wed, 27 Dec 2023 08:14:19 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1A5A32BC058 for ; Wed, 27 Dec 2023 08:14:19 +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 26BDD3406C2 for ; Wed, 27 Dec 2023 08:14:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFBFEED2 for ; Wed, 27 Dec 2023 08:14:16 +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: <1703664854.8ceb269037aac70c7f95f82335794619be8626f9.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-102.15.0.ebuild X-VCS-Directories: dev-lang/spidermonkey/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 8ceb269037aac70c7f95f82335794619be8626f9 X-VCS-Branch: master Date: Wed, 27 Dec 2023 08:14:16 +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: 8d9b6a75-ebc5-4da0-99e1-75a29edd4903 X-Archives-Hash: 6fbe89b90e381a6f258699b741b3c8de commit: 8ceb269037aac70c7f95f82335794619be8626f9 Author: Joonas Niilola gentoo org> AuthorDate: Wed Dec 27 08:13:35 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Dec 27 08:14:14 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ceb2690 dev-lang/spidermonkey: exclude some tests on x86 on 102.15.0 Signed-off-by: Joonas Niilola gentoo.org> dev-lang/spidermonkey/spidermonkey-102.15.0.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-lang/spidermonkey/spidermonkey-102.15.0.ebuild b/dev-lang/spidermonkey/spidermonkey-102.15.0.ebuild index 9326d9641f1c..72ab19c92cae 100644 --- a/dev-lang/spidermonkey/spidermonkey-102.15.0.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-102.15.0.ebuild @@ -434,6 +434,13 @@ src_test() { echo "non262/Math/fround.js" >> "${T}"/known_failures.list fi + 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 \