]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/tests/compile_test_helpers.c
ccanlint: rename test keys
[ccan] / tools / ccanlint / tests / compile_test_helpers.c
index 3d5a8a74548a3c83f9213d4ae8a7fedac1e4b23a..0169f6024f21b3e263d5423bd168d16c498b539c 100644 (file)
@@ -21,18 +21,14 @@ static const char *can_run(struct manifest *m)
        return NULL;
 }
 
-static char *compile(struct manifest *m,
-                    bool keep,
-                    struct ccan_file *cfile)
+static bool compile(struct manifest *m,
+                   bool keep,
+                   struct ccan_file *cfile,
+                   char **output)
 {
-       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;
+       return compile_object(m, cfile->fullname, ccan_dir, "",
+                             cfile->compiled, output);
 }
 
 static void do_compile_test_helpers(struct manifest *m,
@@ -41,26 +37,35 @@ static void do_compile_test_helpers(struct manifest *m,
                                    struct score *score)
 {
        struct ccan_file *i;
+       bool errors = false, warnings = false;
 
        if (list_empty(&m->other_test_c_files))
                score->total = 0;
+       else
+               score->total = 2;
 
        list_for_each(&m->other_test_c_files, i, list) {
-               char *cmdout = compile(m, keep, i);
-               if (cmdout) {
+               char *cmdout;
+
+               if (!compile(m, keep, i, &cmdout)) {
+                       errors = true;
                        score->error = "Failed to compile helper C files";
                        score_file_error(score, i, 0, cmdout);
+               } else if (!streq(cmdout, "")) {
+                       warnings = true;
+                       score->error = "Helper C files gave warnings";
+                       score_file_error(score, i, 0, cmdout);
                }
        }
 
-       if (!score->error) {
+       if (!errors) {
                score->pass = true;
-               score->score = score->total;
+               score->score = score->total - warnings;
        }
 }
 
 struct ccanlint compile_test_helpers = {
-       .key = "compile-helpers",
+       .key = "tests_helpers_compile",
        .name = "Module test helper objects compile",
        .check = do_compile_test_helpers,
        .can_run = can_run,