]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/tests/depends_accurate.c
ccanlint: add testdepends support.
[ccan] / tools / ccanlint / tests / depends_accurate.c
index 986fb3bcc398df429e3b09d05cd081dc22e9d039..0ed1e654cd9324199e045a867b41b4d219593a0f 100644 (file)
@@ -16,7 +16,7 @@
 #include <string.h>
 #include <ctype.h>
 
-static bool has_dep(struct manifest *m, const char *depname)
+static bool has_dep(struct manifest *m, bool test_depend, const char *depname)
 {
        struct manifest *i;
 
@@ -28,45 +28,63 @@ static bool has_dep(struct manifest *m, const char *depname)
                if (streq(i->basename, depname))
                        return true;
        }
+
+       if (test_depend) {
+               list_for_each(&m->test_deps, i, list) {
+                       if (streq(i->basename, depname))
+                               return true;
+               }
+       }
+
        return false;
 }
 
+static void check_dep_includes(struct manifest *m, struct score *score,
+                              struct ccan_file *f, bool test_depend)
+{
+       unsigned int i;
+       char **lines = get_ccan_file_lines(f);
+       struct line_info *li = get_ccan_line_info(f);
+
+       for (i = 0; lines[i]; i++) {
+               char *mod;
+               if (!strreg(f, lines[i],
+                           "^[ \t]*#[ \t]*include[ \t]*[<\"]"
+                           "ccan/+([^/]+)/", &mod))
+                       continue;
+
+               if (has_dep(m, test_depend, mod))
+                       continue;
+
+               /* FIXME: we can't be sure about
+                * conditional includes, so don't
+                * complain. */
+               if (!li[i].cond) {
+                       score_file_error(score, f, i+1,
+                                        "%s not listed in _info", mod);
+               }
+       }
+}
+
 static void check_depends_accurate(struct manifest *m,
                                   unsigned int *timeleft, struct score *score)
 {
        struct list_head *list;
 
-       foreach_ptr(list, &m->c_files, &m->h_files,
-                   &m->run_tests, &m->api_tests,
+       foreach_ptr(list, &m->c_files, &m->h_files) {
+               struct ccan_file *f;
+
+               list_for_each(list, f, list)
+                       check_dep_includes(m, score, f, false);
+       }
+
+       foreach_ptr(list, &m->run_tests, &m->api_tests,
                    &m->compile_ok_tests, &m->compile_fail_tests,
                    &m->other_test_c_files) {
                struct ccan_file *f;
 
-               list_for_each(list, f, list) {
-                       unsigned int i;
-                       char **lines = get_ccan_file_lines(f);
-                       struct line_info *li = get_ccan_line_info(f);
-
-                       for (i = 0; lines[i]; i++) {
-                               char *mod;
-                               if (!strreg(f, lines[i],
-                                           "^[ \t]*#[ \t]*include[ \t]*[<\"]"
-                                           "ccan/+([^/]+)/", &mod))
-                                       continue;
-
-                               if (has_dep(m, mod))
-                                       continue;
-
-                               /* FIXME: we can't be sure about
-                                * conditional includes, so don't
-                                * complain. */
-                               if (!li[i].cond) {
-                                       score_file_error(score, f, i+1,
-                                                        "%s not listed in _info",
-                                                        mod);
-                               }
-                       }
-               }
+               list_for_each(list, f, list)
+                       check_dep_includes(m, score, f, true);
        }
 
        if (!score->error) {
@@ -79,7 +97,7 @@ struct ccanlint depends_accurate = {
        .key = "depends_accurate",
        .name = "Module's CCAN dependencies are the only CCAN files #included",
        .check = check_depends_accurate,
-       .needs = "depends_exist"
+       .needs = "depends_exist test_depends_exist"
 };
 
 REGISTER_TEST(depends_accurate);