aboutsummaryrefslogtreecommitdiffstats
path: root/make/scripts
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2019-09-04 04:09:36 +0200
committerSven Gothel <[email protected]>2019-09-04 04:09:36 +0200
commitd1f4bcc64222d53eb7241184210730aa28ae1f6d (patch)
treed64d979312097dbcc49cca8c2ad42cd73e572b8f /make/scripts
parent4f312cc49796438394ab2d56f425536931086e8e (diff)
check-junit: enhance output (make it a brief list of classes)
Diffstat (limited to 'make/scripts')
-rwxr-xr-xmake/scripts/check-junit.sh4
1 files changed, 2 insertions, 2 deletions
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
}