commit: ff260cd0c5b917a91d5700b868eba84e78a785b5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 15 04:07:09 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> 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 <sam <AT> 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
}