meson.eclass: don't pass --verbose to meson test
authorMike Gilbert <floppym@gentoo.org>
Wed, 24 Jul 2019 16:54:31 +0000 (12:54 -0400)
committerMike Gilbert <floppym@gentoo.org>
Wed, 24 Jul 2019 16:55:43 +0000 (12:55 -0400)
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@gentoo.org>
eclass/meson.eclass

index 7c62cf44f78745ff626f1dc6e454e5412cc82bfc..cb213e15e12e59e8b8eda617ab210d3334bd4671 100644 (file)
@@ -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[@]}")