commit: e9c146e4335d47d61e415efa81f002e600e226f6
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 24 16:54:31 2019 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Wed Jul 24 16:55:43 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9c146e4
meson.eclass: don't pass --verbose to meson test
This ends up sending spamming stdout/stderr with test output. It's
better to have that redirected to the test log.
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
eclass/meson.eclass | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/eclass/meson.eclass b/eclass/meson.eclass
index 7c62cf44f78..cb213e15e12 100644
--- a/eclass/meson.eclass
+++ b/eclass/meson.eclass
@@ -260,13 +260,12 @@ meson_src_test() {
debug-print-function ${FUNCNAME} "$@"
local mesontestargs=(
- --verbose
-C "${BUILD_DIR}"
- )
+ )
[[ -n ${NINJAOPTS} || -n ${MAKEOPTS} ]] &&
mesontestargs+=(
--num-processes "$(makeopts_jobs
${NINJAOPTS:-${MAKEOPTS}})"
- )
+ )
# Append additional arguments from ebuild
mesontestargs+=("${emesontestargs[@]}")