examples_relevant.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #include <tools/ccanlint/ccanlint.h>
  2. #include <tools/tools.h>
  3. #include <ccan/talloc/talloc.h>
  4. #include <ccan/str/str.h>
  5. #include <sys/types.h>
  6. #include <sys/stat.h>
  7. #include <fcntl.h>
  8. #include <unistd.h>
  9. #include <limits.h>
  10. #include <errno.h>
  11. #include <stdlib.h>
  12. #include <stdio.h>
  13. #include <err.h>
  14. #include <string.h>
  15. #include <ctype.h>
  16. static void examples_relevant_check(struct manifest *m,
  17. bool keep,
  18. unsigned int *timeleft,
  19. struct score *score)
  20. {
  21. struct ccan_file *f;
  22. struct doc_section *d;
  23. list_for_each(&m->h_files, f, list) {
  24. list_for_each(get_ccan_file_docs(f), d, list) {
  25. unsigned int i;
  26. bool found = false;
  27. if (!streq(d->type, "example"))
  28. continue;
  29. for (i = 0; i < d->num_lines; i++) {
  30. if (strstr(d->lines[i], d->function))
  31. found = true;
  32. }
  33. if (!found) {
  34. score_file_error(score, f, d->srcline+1,
  35. "Example for %s doesn't"
  36. " mention it", d->function);
  37. }
  38. }
  39. }
  40. if (!score->error) {
  41. score->score = score->total;
  42. score->pass = true;
  43. return;
  44. }
  45. }
  46. struct ccanlint examples_relevant = {
  47. .key = "examples_relevant",
  48. .name = "Example: sections demonstrate appropriate function",
  49. .check = examples_relevant_check,
  50. .needs = "examples_exist"
  51. };
  52. REGISTER_TEST(examples_relevant);