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 95D8C15806E for ; Mon, 15 May 2023 04:10:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 857B7E0900; Mon, 15 May 2023 04:10:46 +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 338C6E0900 for ; Mon, 15 May 2023 04:10:46 +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 12AA0340D9E for ; Mon, 15 May 2023 04:10:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D0CCA70 for ; Mon, 15 May 2023 04:10:42 +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: <1684123792.ff260cd0c5b917a91d5700b868eba84e78a785b5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/sed/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/sed/sed-4.9.ebuild X-VCS-Directories: sys-apps/sed/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ff260cd0c5b917a91d5700b868eba84e78a785b5 X-VCS-Branch: master Date: Mon, 15 May 2023 04:10:42 +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: 63593f06-44a6-4acc-9b77-8a8e8235e806 X-Archives-Hash: d62eef6b5109f6c922023f67602db2ab commit: ff260cd0c5b917a91d5700b868eba84e78a785b5 Author: Sam James gentoo org> AuthorDate: Mon May 15 04:07:09 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon May 15 04:09:52 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff260cd0 sys-apps/sed: don't automagically use Valgrind for tests Signed-off-by: Sam James gentoo.org> sys-apps/sed/sed-4.9.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys-apps/sed/sed-4.9.ebuild b/sys-apps/sed/sed-4.9.ebuild index b8a7af1f029e..c6cc11898175 100644 --- a/sys-apps/sed/sed-4.9.ebuild +++ b/sys-apps/sed/sed-4.9.ebuild @@ -48,6 +48,9 @@ src_configure() { } src_test() { + # We don't want to automagically use Valgrind for tests. + sed -i -e 's:valgrind --error-exitcode=1:false:' init.cfg || die + emake VERBOSE=yes check }