commit: f9246155eb6407018be2681df1de429b0c33c034
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 24 11:09:16 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Feb 24 18:02:40 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9246155
toolchain.eclass: enable verbose test logging
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
eclass/toolchain.eclass | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index daa62e3a67c..54cc513eb36 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -1731,7 +1731,8 @@ gcc_do_make() {
toolchain_src_test() {
if use ${GCC_EBUILD_TEST_FLAG} ; then
cd "${WORKDIR}"/build
- emake -k check
+ # enable verbose test run and result logging
+ emake -k check RUNTESTFLAGS='-a -v'
fi
}