X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fccanlint%2Ftests%2Fhas_tests.c;h=bdfe49d56b8725389b279671052fd8356f499a06;hp=0e90d16ff737a717765727f27c7a8ddb68c6170e;hb=2926cafb52b9d95646d9dafa877d53f2368d8b2c;hpb=016a19d260cd7f4afeb5b2b2cc28c8bbed1cd170 diff --git a/tools/ccanlint/tests/has_tests.c b/tools/ccanlint/tests/has_tests.c index 0e90d16f..bdfe49d5 100644 --- a/tools/ccanlint/tests/has_tests.c +++ b/tools/ccanlint/tests/has_tests.c @@ -10,7 +10,7 @@ #include #include -extern struct ccanlint has_tests; +extern struct ccanlint tests_exist; static void handle_no_tests(struct manifest *m, struct score *score) { @@ -92,7 +92,7 @@ static void handle_no_tests(struct manifest *m, struct score *score) fclose(run); } -static void check_has_tests(struct manifest *m, +static void check_tests_exist(struct manifest *m, bool keep, unsigned int *timeleft, struct score *score) { @@ -103,7 +103,7 @@ static void check_has_tests(struct manifest *m, score->error = "No test directory"; if (errno != ENOENT) err(1, "statting %s", test_dir); - has_tests.handle = handle_no_tests; + tests_exist.handle = handle_no_tests; return; } @@ -117,7 +117,7 @@ static void check_has_tests(struct manifest *m, && list_empty(&m->compile_ok_tests)) { if (list_empty(&m->compile_fail_tests)) { score->error = "No tests in test directory"; - has_tests.handle = handle_no_tests; + tests_exist.handle = handle_no_tests; } else score->error = "No positive tests in test directory"; return; @@ -126,11 +126,11 @@ static void check_has_tests(struct manifest *m, score->score = score->total; } -struct ccanlint has_tests = { +struct ccanlint tests_exist = { .key = "tests_exist", .name = "Module has test directory with tests in it", - .check = check_has_tests, + .check = check_tests_exist, .needs = "" }; -REGISTER_TEST(has_tests); +REGISTER_TEST(tests_exist);