summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorVolkmar W. Pogatzki <gentoo@pogatzki.net>2022-06-28 18:02:45 +0200
committerFlorian Schmaus <flow@gentoo.org>2022-07-04 15:15:16 +0200
commita4440928b24f7a765fa7c9427261fa4ca722ea51 (patch)
tree7ad041d293e6a79acb378882690f63305ee93e89 /eclass
parentmedia-libs/openjpeg: Stabilize 2.5.0-r2 amd64, #856304 (diff)
downloadgentoo-a4440928b24f7a765fa7c9427261fa4ca722ea51.tar.gz
gentoo-a4440928b24f7a765fa7c9427261fa4ca722ea51.tar.bz2
gentoo-a4440928b24f7a765fa7c9427261fa4ca722ea51.zip
eclass/java-utils-2.eclass: make testng output more verbose
Bug: https://bugs.gentoo.org/801694 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/26118 Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/java-utils-2.eclass7
1 files changed, 6 insertions, 1 deletions
diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass
index e5a2b611d111..6576712e0104 100644
--- a/eclass/java-utils-2.eclass
+++ b/eclass/java-utils-2.eclass
@@ -1901,7 +1901,12 @@ etestng() {
${JAVA_TEST_RUNNER_EXTRA_ARGS[@]}
)
- [[ ! "${JAVA_TEST_RUNNER_EXTRA_ARGS[@]}" =~ "-usedefaultlisteners" ]] && args+=( -usedefaultlisteners false )
+ if [[ ! "${JAVA_TEST_RUNNER_EXTRA_ARGS[@]}" =~ "-usedefaultlisteners" ]]; then
+ args+=(
+ -verbose 3
+ -usedefaultlisteners true
+ )
+ fi
args+=( -testclass ${tests} )