X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fccanlint%2Fcompulsory_tests%2Fbuild_objs.c;fp=tools%2Fccanlint%2Fcompulsory_tests%2Fbuild_objs.c;h=d26844941c859e10d85fa2e7ae27148fefea98da;hp=77f0a70cd832da52fb47921c2b70acce4c79b00d;hb=85c347709c1740af23dde53685475e5d8118125e;hpb=03a596908b779bbb4b7c2f739c5e238f8c5d6390 diff --git a/tools/ccanlint/compulsory_tests/build_objs.c b/tools/ccanlint/compulsory_tests/build_objs.c index 77f0a70c..d2684494 100644 --- a/tools/ccanlint/compulsory_tests/build_objs.c +++ b/tools/ccanlint/compulsory_tests/build_objs.c @@ -26,26 +26,34 @@ static void check_objs_build(struct manifest *m, unsigned int *timeleft, struct score *score) { struct ccan_file *i; + bool errors = false, warnings = false; if (list_empty(&m->c_files)) score->total = 0; + else + score->total = 2; list_for_each(&m->c_files, i, list) { char *output; char *fullfile = talloc_asprintf(m, "%s/%s", m->dir, i->name); i->compiled = maybe_temp_file(m, "", keep, fullfile); - if (!compile_object(m, fullfile, ccan_dir, "", i->compiled, + if (!compile_object(score, fullfile, ccan_dir, "", i->compiled, &output)) { talloc_free(i->compiled); score->error = "Compiling object files"; score_file_error(score, i, 0, output); + errors = true; + } else if (!streq(output, "")) { + score->error = "Compiling object files gave warnings"; + score_file_error(score, i, 0, output); + warnings = true; } - talloc_free(output); } - if (!score->error) { + + if (!errors) { score->pass = true; - score->score = score->total; + score->score = score->total - warnings; } }