File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -76,8 +76,13 @@ for FILE in $*; do
76
76
TIME=$( xml-printf ' %s' $RESULT_XML ://testcase[$i ]@time)
77
77
NAME=$( xml-printf ' %s' $RESULT_XML ://testcase[$i ]@name)
78
78
FAIL=$( xml-printf ' %s' $RESULT_XML ://testcase[$i ])
79
+ xml-printf ' %s' $RESULT_XML ://testcase[$i ]/skipped > /dev/null 2>&1
80
+ SKIPPED=${PIPESTATUS[0]}
79
81
80
- if [ -z " $FAIL " ] && [ $MEM_ERRORS -eq 0 ] && [ $HELGRIND_ERRORS -eq 0 ] && [ $DRD_ERRORS -eq 0 ]; then
82
+ if [ " $SKIPPED " -eq 0 ]; then
83
+ # Skipped tests
84
+ printf " \t\e[90m ○ %s \e[0m(Skiped)\e[0m\n" " $NAME "
85
+ elif [ -z " $FAIL " ] && [ $MEM_ERRORS -eq 0 ] && [ $HELGRIND_ERRORS -eq 0 ] && [ $DRD_ERRORS -eq 0 ]; then
81
86
# No errors at all
82
87
printf " \t\e[32m ✔ %s \e[0m(%sms)\e[0m\n" " $NAME " " $TIME "
83
88
(( SUCCESSES++ ))
You can’t perform that action at this time.
0 commit comments