]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/tests/run_tests_valgrind.c
ccanlint: make compile commands return output.
[ccan] / tools / ccanlint / tests / run_tests_valgrind.c
index e0c2ab9197db29d8fbe60c2194d1cbbd9e68e4d1..7ab67dbcd83f7550bf4b84a141c480fcc0c9a60a 100644 (file)
 static const char *can_run_vg(struct manifest *m)
 {
        unsigned int timeleft = default_timeout_ms;
-       char *output = run_command(m, &timeleft,
-                                  "valgrind -q --error-exitcode=0 true");
+       char *output;
 
-       if (output)
+       if (!run_command(m, &timeleft, &output,
+                        "valgrind -q --error-exitcode=0 true"))
                return talloc_asprintf(m, "No valgrind support: %s", output);
        return NULL;
 }
@@ -41,14 +41,14 @@ static void do_run_tests_vg(struct manifest *m,
        foreach_ptr(list, &m->run_tests, &m->api_tests) {
                list_for_each(list, i, list) {
                        score->total++;
-                       cmdout = run_command(m, timeleft,
-                                    "valgrind -q --error-exitcode=100 %s",
-                                    i->compiled);
-                       if (cmdout) {
+                       if (run_command(score, timeleft, &cmdout,
+                                       "valgrind -q --error-exitcode=100 %s",
+                                       i->compiled)) {
+                               score->score++;
+                       } else {
                                score->error = "Running under valgrind";
                                score_file_error(score, i, 0, cmdout);
-                       } else
-                               score->score++;
+                       }
                }
        }