From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 58A5315827B for ; Fri, 29 Aug 2025 16:40:20 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 49FA9340BBE for ; Fri, 29 Aug 2025 16:40:20 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 46F40110562; Fri, 29 Aug 2025 16:40: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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 3B2B2110562 for ; Fri, 29 Aug 2025 16:40: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F0486340BBE for ; Fri, 29 Aug 2025 16:40:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 626202329 for ; Fri, 29 Aug 2025 16:40:17 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1756485585.a382f2d3d366c198c7a2e8b0f05c88a53a89a618.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: llvm-runtimes/compiler-rt-sanitizers/ X-VCS-Repository: repo/gentoo X-VCS-Files: llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-15.0.7-r1.ebuild llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-16.0.6-r1.ebuild llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-17.0.6-r1.ebuild X-VCS-Directories: llvm-runtimes/compiler-rt-sanitizers/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: a382f2d3d366c198c7a2e8b0f05c88a53a89a618 X-VCS-Branch: master Date: Fri, 29 Aug 2025 16:40: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: 198cc5a4-0ca5-4486-8a04-75a61dda3cf2 X-Archives-Hash: 7be49cf387c5e727677f4b15fe38b53d commit: a382f2d3d366c198c7a2e8b0f05c88a53a89a618 Author: Eli Schwartz gentoo org> AuthorDate: Fri Aug 29 16:34:59 2025 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Fri Aug 29 16:39:45 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a382f2d3 llvm-runtimes/compiler-rt-sanitizers: sync more glibc version test skips reduces noise, at least a little bit, for test failures in old slots. The printf-fortify skips were in older ebuilds for newer slots, that since got obsoleted by cherry-picks. But they weren't synced down, so add them now. Signed-off-by: Eli Schwartz gentoo.org> .../compiler-rt-sanitizers-15.0.7-r1.ebuild | 11 +++++++++++ .../compiler-rt-sanitizers-16.0.6-r1.ebuild | 4 ++++ .../compiler-rt-sanitizers-17.0.6-r1.ebuild | 4 ++++ 3 files changed, 19 insertions(+) diff --git a/llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-15.0.7-r1.ebuild b/llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-15.0.7-r1.ebuild index cc90625548d1..0953044302ff 100644 --- a/llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-15.0.7-r1.ebuild +++ b/llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-15.0.7-r1.ebuild @@ -106,6 +106,13 @@ src_prepare() { if use ubsan && ! use cfi; then > test/cfi/CMakeLists.txt || die fi + + if has_version -b ">=sys-libs/glibc-2.37"; then + # known failures with glibc-2.37 + # https://github.com/llvm/llvm-project/issues/60678 + rm test/dfsan/custom.cpp || die + rm test/dfsan/release_shadow_space.c || die + fi if has_version -b ">=sys-libs/glibc-2.38"; then # On glibc 2.38, the "nohang" test fails by... hanging. # "fixed" in llvm 19. @@ -113,6 +120,10 @@ src_prepare() { # https://github.com/llvm/llvm-project/commit/deebf6b312227e028dd3258b162306b9cdb21cf7 rm test/tsan/getline_nohang.cpp || die fi + if has_version ">=sys-libs/glibc-2.40"; then + # https://github.com/llvm/llvm-project/issues/100877 + rm test/asan/TestCases/Linux/printf-fortify-5.c || die + fi llvm.org_src_prepare } diff --git a/llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-16.0.6-r1.ebuild b/llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-16.0.6-r1.ebuild index e90e63cb5f34..a0b644c7e945 100644 --- a/llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-16.0.6-r1.ebuild +++ b/llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-16.0.6-r1.ebuild @@ -119,6 +119,10 @@ src_prepare() { # https://github.com/llvm/llvm-project/commit/deebf6b312227e028dd3258b162306b9cdb21cf7 rm test/tsan/getline_nohang.cpp || die fi + if has_version ">=sys-libs/glibc-2.40"; then + # https://github.com/llvm/llvm-project/issues/100877 + rm test/asan/TestCases/Linux/printf-fortify-5.c || die + fi llvm.org_src_prepare } diff --git a/llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-17.0.6-r1.ebuild b/llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-17.0.6-r1.ebuild index c8df8fbabb40..5ce45f2b76ec 100644 --- a/llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-17.0.6-r1.ebuild +++ b/llvm-runtimes/compiler-rt-sanitizers/compiler-rt-sanitizers-17.0.6-r1.ebuild @@ -112,6 +112,10 @@ src_prepare() { # https://github.com/llvm/llvm-project/commit/deebf6b312227e028dd3258b162306b9cdb21cf7 rm test/tsan/getline_nohang.cpp || die fi + if has_version ">=sys-libs/glibc-2.40"; then + # https://github.com/llvm/llvm-project/issues/100877 + rm test/asan/TestCases/Linux/printf-fortify-5.c || die + fi llvm.org_src_prepare }