From d1f4bcc64222d53eb7241184210730aa28ae1f6d Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Wed, 4 Sep 2019 04:09:36 +0200 Subject: check-junit: enhance output (make it a brief list of classes) --- make/scripts/check-junit.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'make/scripts/check-junit.sh') diff --git a/make/scripts/check-junit.sh b/make/scripts/check-junit.sh index 232b3c6a2..32df5f325 100755 --- a/make/scripts/check-junit.sh +++ b/make/scripts/check-junit.sh @@ -26,10 +26,10 @@ function checkresult() { grep failures $builddir/test/$resdir/* | grep -v "errors=\"0\"" | wc echo echo failed junit classes - failures - grep failures $builddir/test/$resdir/* | grep -v "failures=\"0\"" + grep failures $builddir/test/$resdir/* | grep -v "failures=\"0\"" | sed -e 's/.*name=\"//g' -e 's/\".*//g' echo echo failed junit classes - errors - grep failures $builddir/test/$resdir/* | grep -v "errors=\"0\"" + grep failures $builddir/test/$resdir/* | grep -v "errors=\"0\"" | sed -e 's/.*name=\"//g' -e 's/\".*//g' echo fi } -- cgit v1.2.3