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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C5FD91581F3 for ; Sun, 1 Dec 2024 11:47:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18AC3E07F6; Sun, 1 Dec 2024 11:47:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 05138E07F6 for ; Sun, 1 Dec 2024 11:47: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 4C13F341B52 for ; Sun, 1 Dec 2024 11:47:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D61931AB5 for ; Sun, 1 Dec 2024 11:47:17 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1733053551.ddcb591be59ae925b85a66ccd5965a2aaa54e4a5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/folly/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/folly/folly-2024.11.04.00-r2.ebuild X-VCS-Directories: dev-cpp/folly/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ddcb591be59ae925b85a66ccd5965a2aaa54e4a5 X-VCS-Branch: master Date: Sun, 1 Dec 2024 11:47:17 +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: 72f8276f-7a4b-42e1-a68c-267dd5a16f08 X-Archives-Hash: dbf3de7f2bb83439785ee7ee605492d3 commit: ddcb591be59ae925b85a66ccd5965a2aaa54e4a5 Author: sin-ack protonmail com> AuthorDate: Sat Nov 23 21:56:11 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Dec 1 11:45:51 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddcb591b dev-cpp/folly: skip a test on system-libcxx systems This test aborts with something about a threading-related assert in Folly. Signed-off-by: sin-ack protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/39437 Signed-off-by: Sam James gentoo.org> dev-cpp/folly/folly-2024.11.04.00-r2.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/dev-cpp/folly/folly-2024.11.04.00-r2.ebuild b/dev-cpp/folly/folly-2024.11.04.00-r2.ebuild index 44a95b28d09a..d861968c9242 100644 --- a/dev-cpp/folly/folly-2024.11.04.00-r2.ebuild +++ b/dev-cpp/folly/folly-2024.11.04.00-r2.ebuild @@ -13,7 +13,7 @@ EAPI=8 # dev-cpp/wangle # dev-util/watchman -inherit flag-o-matic cmake +inherit flag-o-matic cmake toolchain-funcs DESCRIPTION="An open-source C++ library developed and used at Facebook" HOMEPAGE="https://github.com/facebook/folly" @@ -101,5 +101,13 @@ src_test() { ) fi + if [[ $(tc-get-cxx-stdlib) == libc++ ]]; then + CMAKE_SKIP_TESTS+=( + # Aborts with libc++. + # https://github.com/facebook/folly/issues/2345 + buffered_atomic_test.BufferedAtomic.singleThreadUnguardedAccess + ) + fi + cmake_src_test }