11 echo "Running suite(s): gtk-doc-$suite";
14 # check missing section description
15 # we can't just check for a missing "tester_nodocs" entry
16 grep >/dev
/null
"tester_nodocs:Long_Description" $DOC_MODULE-undocumented.txt
17 if test $?
= 1 ; then failed
=`expr $failed + 1`; fi
18 tested
=`expr $tested + 1`
20 # check missing section long description
21 grep >/dev
/null
"tester_nolongdesc:Long_Description" $DOC_MODULE-undocumented.txt
22 if test $?
= 1 ; then failed
=`expr $failed + 1`; fi
23 tested
=`expr $tested + 1`
25 # check missing section short description
26 grep >/dev
/null
"tester_noshortdesc:Short_Description" $DOC_MODULE-undocumented.txt
27 if test $?
= 1 ; then failed
=`expr $failed + 1`; fi
28 tested
=`expr $tested + 1`
31 grep >/dev
/null
"EnumNoItemDocs (<items>)" $DOC_MODULE-undocumented.txt
32 if test $?
= 1 ; then failed
=`expr $failed + 1`; fi
33 tested
=`expr $tested + 1`
36 successes
=`expr $tested - $failed`
37 rate
=`expr 100 \* $successes / $tested`;
38 echo "$rate %: Checks $tested, Failures: $failed"