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 7236E158170 for ; Thu, 18 Jul 2024 18:15:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3708E2A69; Thu, 18 Jul 2024 18:15:34 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 919B8E2A69 for ; Thu, 18 Jul 2024 18:15:34 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6301F33BDC5 for ; Thu, 18 Jul 2024 18:15:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C05151B89 for ; Thu, 18 Jul 2024 18:15:31 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1721326469.55f10a0c27cb0eb0e52d3c7e81ddff6cdc6b48a5.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/nodejs/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/nodejs/nodejs-22.4.1.ebuild X-VCS-Directories: net-libs/nodejs/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 55f10a0c27cb0eb0e52d3c7e81ddff6cdc6b48a5 X-VCS-Branch: master Date: Thu, 18 Jul 2024 18:15:31 +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: f3ea72f8-eb0d-49f6-afea-d8080e8ad87a X-Archives-Hash: 82222e8fe8d99c8650d57033014e18f5 commit: 55f10a0c27cb0eb0e52d3c7e81ddff6cdc6b48a5 Author: William Hubbs gentoo org> AuthorDate: Thu Jul 18 18:11:42 2024 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Jul 18 18:14:29 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55f10a0c net-libs/nodejs: drop failing test for 32 bit platforms Bug: https://bugs.gentoo.org/936173 Signed-off-by: William Hubbs gentoo.org> net-libs/nodejs/nodejs-22.4.1.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/net-libs/nodejs/nodejs-22.4.1.ebuild b/net-libs/nodejs/nodejs-22.4.1.ebuild index 9ea8cdbd10f4..745f2560bf03 100644 --- a/net-libs/nodejs/nodejs-22.4.1.ebuild +++ b/net-libs/nodejs/nodejs-22.4.1.ebuild @@ -264,6 +264,7 @@ src_test() { test/sequential/test-util-debug.js ) [[ "$(nice)" -gt 10 ]] && drop_tests+=( "test/parallel/test-os.js" ) + [[ $(tc-get-ptr-size) == 4 ]] && drop_tests+=( test/sequential/test-watch-mode.mjs ) rm -f "${drop_tests[@]}" || die "disabling tests failed" out/${BUILDTYPE}/cctest || die