dev-lang/tk: Now is failing if test do not pass

Bug: https://bugs.gentoo.org/971525
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
This commit is contained in:
Alfredo Tupone
2026-03-24 20:26:59 +01:00
parent 5ea84c4c9d
commit f65ca09b6f
2 changed files with 4 additions and 2 deletions

View File

@@ -102,7 +102,8 @@ multilib_src_configure() {
}
multilib_src_test() {
CI=1 virtx emake test || die "Tests failed"
CI=1 virtx emake test |& tee test.log || die "Tests failed"
grep "Files with failing tests:" test.log && die "Test failed"
}
multilib_src_install() {

View File

@@ -98,7 +98,8 @@ multilib_src_configure() {
}
multilib_src_test() {
CI=1 virtx emake test || die "Tests failed"
CI=1 virtx emake test |& tee test.log || die "Tests failed"
grep "Files with failing tests:" test.log && die "Test failed"
}
multilib_src_install() {