X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=tools%2Fccanlint%2Ftests%2Frun_tests_valgrind.c;h=7ab67dbcd83f7550bf4b84a141c480fcc0c9a60a;hb=03a596908b779bbb4b7c2f739c5e238f8c5d6390;hp=6312a0a864327988c53b39f080eb0b6daedcaecc;hpb=f952b88b36e3803370825fb43385f1a42aa24b64;p=ccan diff --git a/tools/ccanlint/tests/run_tests_valgrind.c b/tools/ccanlint/tests/run_tests_valgrind.c index 6312a0a8..7ab67dbc 100644 --- a/tools/ccanlint/tests/run_tests_valgrind.c +++ b/tools/ccanlint/tests/run_tests_valgrind.c @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include @@ -17,109 +18,56 @@ /* Note: we already test safe_mode in run_tests.c */ static const char *can_run_vg(struct manifest *m) { - char *output = run_command(m, "valgrind -q true"); + unsigned int timeleft = default_timeout_ms; + 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; } -struct run_tests_result { - struct list_node list; - struct ccan_file *file; - const char *output; -}; - -static void *do_run_tests_vg(struct manifest *m) +/* FIXME: Run examples, too! */ +static void do_run_tests_vg(struct manifest *m, + bool keep, + unsigned int *timeleft, + struct score *score) { - struct list_head *list = talloc(m, struct list_head); - struct run_tests_result *res; struct ccan_file *i; + struct list_head *list; char *cmdout; - char *olddir; - - /* We run tests in the module directory, so any paths - * referenced can all be module-local. */ - olddir = talloc_getcwd(m); - if (!olddir) - err(1, "Could not save cwd"); - if (chdir(m->dir) != 0) - err(1, "Could not chdir to %s", m->dir); - - list_head_init(list); - - list_for_each(&m->run_tests, i, list) { - run_tests_vg.total_score++; - /* FIXME: timeout here */ - cmdout = run_command(m, "valgrind -q %s", i->compiled); - if (cmdout) { - res = talloc(list, struct run_tests_result); - res->file = i; - res->output = talloc_steal(res, cmdout); - list_add_tail(list, &res->list); - } - } - list_for_each(&m->api_tests, i, list) { - run_tests_vg.total_score++; - /* FIXME: timeout here */ - cmdout = run_command(m, "valgrind -q %s", i->compiled); - if (cmdout) { - res = talloc(list, struct run_tests_result); - res->file = i; - res->output = talloc_steal(res, cmdout); - list_add_tail(list, &res->list); + score->total = 0; + foreach_ptr(list, &m->run_tests, &m->api_tests) { + list_for_each(list, i, list) { + score->total++; + 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); + } } } - if (list_empty(list)) { - talloc_free(list); - list = NULL; - } - - if (chdir(olddir) != 0) - err(1, "Could not chdir to %s", olddir); - - return list; -} - -static unsigned int score_run_tests_vg(struct manifest *m, void *check_result) -{ - struct list_head *list = check_result; - struct run_tests_result *i; - unsigned int score = run_tests_vg.total_score; - - list_for_each(list, i, list) - score--; - return score; -} - -static const char *describe_run_tests_vg(struct manifest *m, - void *check_result) -{ - struct list_head *list = check_result; - char *descrip = talloc_strdup(check_result, "Running tests under valgrind failed:\n"); - struct run_tests_result *i; - - list_for_each(list, i, list) - descrip = talloc_asprintf_append(descrip, "Running %s:\n%s", - i->file->name, i->output); - return descrip; + if (score->score == score->total) + score->pass = true; } /* Gcc's warn_unused_result is fascist bullshit. */ #define doesnt_matter() -static void run_under_debugger_vg(struct manifest *m, void *check_result) +static void run_under_debugger_vg(struct manifest *m, struct score *score) { - struct list_head *list = check_result; - struct run_tests_result *first; + struct file_error *first; char *command; if (!ask("Should I run the first failing test under the debugger?")) return; - first = list_top(list, struct run_tests_result, list); + first = list_top(&score->per_file_errors, struct file_error, list); command = talloc_asprintf(m, "valgrind --db-attach=yes %s", first->file->compiled); if (system(command)) @@ -127,12 +75,10 @@ static void run_under_debugger_vg(struct manifest *m, void *check_result) } struct ccanlint run_tests_vg = { - .key = "valgrind", - .name = "run and api tests under valgrind", - .score = score_run_tests_vg, - .check = do_run_tests_vg, - .describe = describe_run_tests_vg, + .key = "valgrind-tests", + .name = "Module's run and api tests succeed under valgrind", .can_run = can_run_vg, + .check = do_run_tests_vg, .handle = run_under_debugger_vg };