check-coverage 341 B

12345678910111213141516
  1. #!/bin/sh
  2. add_h4()
  3. {
  4. sed -e 's,^\(.*\)$,<h4><a name="api:\1">\1</a></h4>,'
  5. }
  6. dir=`dirname $0`
  7. sh $dir/produce-lists || exit 1
  8. cat $dir/public-api $dir/wapi > $dir/current-api
  9. for i in `cat $dir/current-api`; do
  10. if grep "api:$i" $dir/sources/mono-api-*.html > /dev/null; then
  11. true;
  12. else
  13. echo "Missing: $i from the template";
  14. fi
  15. done