X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=tools%2Fccanlint%2Ftests%2Fhas_info_documentation.c;h=b98177d8a783087fc8436a124b09744e45ff6276;hb=016a19d260cd7f4afeb5b2b2cc28c8bbed1cd170;hp=ee89df9fc12398473ae24c059fd6724d0159205f;hpb=ad3f309e3c13d6b88864aab146895c9df9bc6e5b;p=ccan-lca-2011.git diff --git a/tools/ccanlint/tests/has_info_documentation.c b/tools/ccanlint/tests/has_info_documentation.c index ee89df9..b98177d 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); @@ -91,9 +93,10 @@ static void check_has_info_documentation(struct manifest *m, } struct ccanlint has_info_documentation = { - .key = "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, NULL); +REGISTER_TEST(has_info_documentation);