X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=tools%2Fccanlint%2Ftests%2Fcompile_test_helpers.c;h=3d5a8a74548a3c83f9213d4ae8a7fedac1e4b23a;hb=03a596908b779bbb4b7c2f739c5e238f8c5d6390;hp=2aa8d8639800a379bad6d42f70652b09b5393cda;hpb=3612661714e86333ceacca7314959a5ed938dc6a;p=ccan diff --git a/tools/ccanlint/tests/compile_test_helpers.c b/tools/ccanlint/tests/compile_test_helpers.c index 2aa8d863..3d5a8a74 100644 --- a/tools/ccanlint/tests/compile_test_helpers.c +++ b/tools/ccanlint/tests/compile_test_helpers.c @@ -14,55 +14,56 @@ #include #include -static const char *can_build(struct manifest *m) +static const char *can_run(struct manifest *m) { if (safe_mode) return "Safe mode enabled"; return NULL; } -static char *objname(const void *ctx, const char *cfile) +static char *compile(struct manifest *m, + bool keep, + struct ccan_file *cfile) { - return talloc_asprintf(ctx, "%.*s.o ", strlen(cfile) - 2, cfile); -} - -static char *compile(struct manifest *m, const char *cfile) -{ - char *obj; - - obj = objname(m, cfile); - return compile_object(m, obj, cfile); + char *output; + cfile->compiled = maybe_temp_file(m, ".o", keep, cfile->fullname); + if (compile_object(m, cfile->fullname, ccan_dir, "", + cfile->compiled, &output)) { + talloc_free(output); + return NULL; + } + return output; } -static void *do_compile_test_helpers(struct manifest *m) +static void do_compile_test_helpers(struct manifest *m, + bool keep, + unsigned int *timeleft, + struct score *score) { - char *cmdout = NULL; struct ccan_file *i; + if (list_empty(&m->other_test_c_files)) + score->total = 0; + list_for_each(&m->other_test_c_files, i, list) { - compile_tests.total_score++; - cmdout = compile(m, i->name); - if (cmdout) - return talloc_asprintf(m, - "Failed to compile helper C" - " code file %s:\n%s", - i->name, cmdout); + char *cmdout = compile(m, keep, i); + if (cmdout) { + score->error = "Failed to compile helper C files"; + score_file_error(score, i, 0, cmdout); + } } - return NULL; -} -static const char *describe_compile_test_helpers(struct manifest *m, - void *check_result) -{ - return check_result; + if (!score->error) { + score->pass = true; + score->score = score->total; + } } struct ccanlint compile_test_helpers = { - .name = "Compiling test helper files", - .total_score = 1, + .key = "compile-helpers", + .name = "Module test helper objects compile", .check = do_compile_test_helpers, - .describe = describe_compile_test_helpers, - .can_run = can_build, + .can_run = can_run, }; -REGISTER_TEST(compile_test_helpers, &depends_built); +REGISTER_TEST(compile_test_helpers, &depends_built, &has_tests, NULL);