diff options
-rwxr-xr-x | bin/ebuild.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 57eca618a..0b6ac9652 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1019,6 +1019,9 @@ dyn_test() { fi if ! hasq test $FEATURES && [ "${EBUILD_FORCE_TEST}" != "1" ]; then vecho ">>> Test phase [not enabled]: ${CATEGORY}/${PF}" + elif ! hasq test ${USE} && [ "${EBUILD_FORCE_TEST}" != "1" ]; then + ewarn "Skipping make test/check since USE=test is masked." + vecho ">>> Test phase [explicitly disabled]: ${CATEGORY}/${PF}" elif hasq test $RESTRICT; then ewarn "Skipping make test/check due to ebuild restriction." vecho ">>> Test phase [explicitly disabled]: ${CATEGORY}/${PF}" |