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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 600F01382C5 for ; Mon, 21 Dec 2020 19:25:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F2F42BC011; Mon, 21 Dec 2020 19:25:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 72C982BC011 for ; Mon, 21 Dec 2020 19:25:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6299B340F41 for ; Mon, 21 Dec 2020 19:25:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC6BF3BD for ; Mon, 21 Dec 2020 19:25:02 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1608577571.0d3129068e028deb9fe7bf0b6001bba93f3702d0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/compiler-rt-sanitizers/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-11.0.1_rc2.ebuild X-VCS-Directories: sys-libs/compiler-rt-sanitizers/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0d3129068e028deb9fe7bf0b6001bba93f3702d0 X-VCS-Branch: master Date: Mon, 21 Dec 2020 19:25:02 +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: f5213f3d-2768-40b0-b7fe-a8b328e08847 X-Archives-Hash: 475087733eb60ba83f8b58e8960cc559 commit: 0d3129068e028deb9fe7bf0b6001bba93f3702d0 Author: Michał Górny gentoo org> AuthorDate: Mon Dec 21 17:52:02 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Dec 21 19:06:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d312906 sys-libs/compiler-rt-sanitizers: Skip glibc-broken test in 11.0.1rc2 Signed-off-by: Michał Górny gentoo.org> .../compiler-rt-sanitizers/compiler-rt-sanitizers-11.0.1_rc2.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-11.0.1_rc2.ebuild b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-11.0.1_rc2.ebuild index 81547ee1605..f5ea6f732f7 100644 --- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-11.0.1_rc2.ebuild +++ b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-11.0.1_rc2.ebuild @@ -87,6 +87,10 @@ src_prepare() { rm test/asan/TestCases/asan_and_llvm_coverage_test.cpp || die fi + # broken with new glibc + sed -i -e '/EXPECT_EQ.*ThreadDescriptorSize/d' \ + lib/sanitizer_common/tests/sanitizer_linux_test.cpp || die + llvm.org_src_prepare }