You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [ "x$COVER"!='x' ] && [ 0 !=$LOCAL_COVERAGE ] ;then
111
111
cover -delete
@@ -180,7 +180,33 @@ if [ 0 != ${PIPESTATUS[0]} ] ; then
180
180
exit 1
181
181
fi
182
182
fi
183
+
# expect to see generated function labels
184
+
forlabelin'BEGIN''END';do
185
+
grep -E "$label: function .+outOfRangeFnc" annotated/synthesize/test.cpp.gcov.html
186
+
if [ 0 !=$? ] ;then
187
+
echo"ERROR: genhtml didn't generate function $label label"
188
+
if [ 0 ==$KEEP_GOING ] ;then
189
+
exit 1
190
+
fi
191
+
fi
192
+
done
183
193
194
+
echo genhtml $DIFFCOV_OPTS --annotate-script `pwd`/annotate.sh --show-owners all -o annotated_nofunc --no-function-coverage --ignore range ./munged.info
195
+
$COVER$GENHTML_TOOL$DIFFCOV_OPTS --annotate-script `pwd`/annotate.sh --show-owners all -o annotated_nofunc --no-function-coverage ./munged.info --ignore range 2>&1| tee annotate.log
0 commit comments