aboutsummaryrefslogtreecommitdiffstats
path: root/make/scripts/check-junit.sh
diff options
context:
space:
mode:
Diffstat (limited to 'make/scripts/check-junit.sh')
-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
}