X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;ds=inline;f=tools%2Fccanlint%2Ftests%2Fhas_info_documentation.c;fp=tools%2Fccanlint%2Ftests%2Fhas_info_documentation.c;h=b98177d8a783087fc8436a124b09744e45ff6276;hb=016a19d260cd7f4afeb5b2b2cc28c8bbed1cd170;hp=a6aafc66e6c304a739ba287e6ff70b5c11bdafc0;hpb=f9423c171395571f9880286190d9cf63da147668;p=ccan diff --git a/tools/ccanlint/tests/has_info_documentation.c b/tools/ccanlint/tests/has_info_documentation.c index a6aafc66..b98177d8 100644 --- a/tools/ccanlint/tests/has_info_documentation.c +++ b/tools/ccanlint/tests/has_info_documentation.c @@ -15,6 +15,8 @@ #include #include +extern struct ccanlint has_info_documentation; + static void create_info_template_doc(struct manifest *m, struct score *score) { int fd = open("_info.new", O_WRONLY|O_CREAT|O_EXCL, 0666); @@ -94,6 +96,7 @@ struct ccanlint has_info_documentation = { .key = "info_documentation_exists", .name = "Module has documentation in _info", .check = check_has_info_documentation, + .needs = "info_exists" }; -REGISTER_TEST(has_info_documentation, &has_info, NULL); +REGISTER_TEST(has_info_documentation);