commit: 0a68e9fa39ed3de7caeeaa4f925b34e36eec2d97
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Wed May 19 15:40:20 2021 +0000
Commit: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
CommitDate: Wed May 19 15:40:20 2021 +0000
URL: https://gitweb.gentoo.org/proj/tatt.git/commit/?id=0a68e9fa
templates/tatt_functions.sh: don't be too verbose when building test deps
Also correctly signal failure to the caller when this fails.
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
templates/tatt_functions.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/templates/tatt_functions.sh b/templates/tatt_functions.sh
index 75f6ba4..0e95e9a 100644
--- a/templates/tatt_functions.sh
+++ b/templates/tatt_functions.sh
@@ -46,9 +46,9 @@ function tatt_test_pkg
{
if [ "${1:?}" == "--test" ]; then
shift
- if ! emerge --onlydeps -1 --with-test-deps ${TATT_EMERGEOPTS} "${1:?}";
then
+ if ! emerge --onlydeps -q1 --with-test-deps ${TATT_EMERGEOPTS} "${1:?}";
then
echo "merging test dependencies of ${1} failed" >> "${TATT_REPORTFILE}"
- return 0
+ return 1
fi
TFEATURES="${FEATURES} test"
else