Commit 99293863 authored by Rusty Russell's avatar Rusty Russell

ccanlint: --deps-fail-ignore.

Useful for bulk testing modules, where some might not have required
external (non-CCAN) dependencies.
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 9491638c
...@@ -43,6 +43,8 @@ int verbose = 0; ...@@ -43,6 +43,8 @@ int verbose = 0;
static struct ccanlint_map tests; static struct ccanlint_map tests;
bool safe_mode = false; bool safe_mode = false;
bool keep_results = false; bool keep_results = false;
bool non_ccan_deps = false;
bool build_failed = false;
static bool targeting = false; static bool targeting = false;
static unsigned int timeout; static unsigned int timeout;
...@@ -556,10 +558,12 @@ static char *opt_set_target(const char *arg, struct dgraph_node *all) ...@@ -556,10 +558,12 @@ static char *opt_set_target(const char *arg, struct dgraph_node *all)
static bool run_tests(struct dgraph_node *all, static bool run_tests(struct dgraph_node *all,
bool summary, bool summary,
bool deps_fail_ignore,
struct manifest *m, struct manifest *m,
const char *prefix) const char *prefix)
{ {
struct run_info run; struct run_info run;
const char *comment = "";
run.quiet = summary; run.quiet = summary;
run.m = m; run.m = m;
...@@ -567,9 +571,18 @@ static bool run_tests(struct dgraph_node *all, ...@@ -567,9 +571,18 @@ static bool run_tests(struct dgraph_node *all,
run.score = run.total = 0; run.score = run.total = 0;
run.pass = true; run.pass = true;
non_ccan_deps = build_failed = false;
dgraph_traverse_to(all, run_test, &run); dgraph_traverse_to(all, run_test, &run);
printf("%sTotal score: %u/%u\n", prefix, run.score, run.total); /* We can completely fail if we're missing external stuff: ignore */
if (deps_fail_ignore && non_ccan_deps && build_failed) {
comment = " (missing non-ccan dependencies?)";
run.pass = true;
}
printf("%sTotal score: %u/%u%s\n",
prefix, run.score, run.total, comment);
return run.pass; return run.pass;
} }
...@@ -583,7 +596,8 @@ static bool add_to_all(const char *member, struct ccanlint *c, ...@@ -583,7 +596,8 @@ static bool add_to_all(const char *member, struct ccanlint *c,
} }
static bool test_module(struct dgraph_node *all, static bool test_module(struct dgraph_node *all,
const char *dir, const char *prefix, bool summary) const char *dir, const char *prefix, bool summary,
bool deps_fail_ignore)
{ {
struct manifest *m = get_manifest(autofree(), dir); struct manifest *m = get_manifest(autofree(), dir);
char *testlink = path_join(NULL, temp_dir(), "test"); char *testlink = path_join(NULL, temp_dir(), "test");
...@@ -594,12 +608,12 @@ static bool test_module(struct dgraph_node *all, ...@@ -594,12 +608,12 @@ static bool test_module(struct dgraph_node *all,
if (symlink(path_join(m, dir, "test"), testlink) != 0) if (symlink(path_join(m, dir, "test"), testlink) != 0)
err(1, "Creating test symlink in %s", temp_dir()); err(1, "Creating test symlink in %s", temp_dir());
return run_tests(all, summary, m, prefix); return run_tests(all, summary, deps_fail_ignore, m, prefix);
} }
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
bool summary = false, pass = true; bool summary = false, pass = true, deps_fail_ignore = false;
unsigned int i; unsigned int i;
const char *prefix = ""; const char *prefix = "";
char *cwd = path_cwd(NULL), *dir; char *cwd = path_cwd(NULL), *dir;
...@@ -633,6 +647,9 @@ int main(int argc, char *argv[]) ...@@ -633,6 +647,9 @@ int main(int argc, char *argv[])
NULL, &override_compiler, "set the compiler"); NULL, &override_compiler, "set the compiler");
opt_register_arg("--cflags <flags>", opt_set_const_charp, opt_register_arg("--cflags <flags>", opt_set_const_charp,
NULL, &override_cflags, "set the compiler flags"); NULL, &override_cflags, "set the compiler flags");
opt_register_noarg("--deps-fail-ignore", opt_set_bool,
&deps_fail_ignore,
"don't fail if external dependencies are missing");
opt_register_noarg("-?|-h|--help", opt_usage_and_exit, opt_register_noarg("-?|-h|--help", opt_usage_and_exit,
"\nA program for checking and guiding development" "\nA program for checking and guiding development"
" of CCAN modules.", " of CCAN modules.",
...@@ -676,7 +693,8 @@ int main(int argc, char *argv[]) ...@@ -676,7 +693,8 @@ int main(int argc, char *argv[])
compiler = override_compiler; compiler = override_compiler;
if (argc == 1) if (argc == 1)
pass = test_module(&top.node, cwd, "", summary); pass = test_module(&top.node, cwd, "",
summary, deps_fail_ignore);
else { else {
for (i = 1; i < argc; i++) { for (i = 1; i < argc; i++) {
dir = path_canon(NULL, dir = path_canon(NULL,
...@@ -689,7 +707,8 @@ int main(int argc, char *argv[]) ...@@ -689,7 +707,8 @@ int main(int argc, char *argv[])
prefix = path_rel(NULL, take(prefix), dir); prefix = path_rel(NULL, take(prefix), dir);
prefix = tal_strcat(NULL, take(prefix), ": "); prefix = tal_strcat(NULL, take(prefix), ": ");
pass &= test_module(&top.node, dir, prefix, summary); pass &= test_module(&top.node, dir, prefix, summary,
deps_fail_ignore);
reset_tests(&top.node); reset_tests(&top.node);
} }
} }
......
...@@ -190,6 +190,12 @@ extern bool safe_mode; ...@@ -190,6 +190,12 @@ extern bool safe_mode;
/* Did the user want to keep all the results? */ /* Did the user want to keep all the results? */
extern bool keep_results; extern bool keep_results;
/* Did we find non-ccan dependencies? */
extern bool non_ccan_deps;
/* Did we fail to build? */
extern bool build_failed;
/* Contents of config.h (or NULL if not found) */ /* Contents of config.h (or NULL if not found) */
extern const char *config_header; extern const char *config_header;
......
...@@ -63,8 +63,10 @@ static void check_depends_exist(struct manifest *m, ...@@ -63,8 +63,10 @@ static void check_depends_exist(struct manifest *m,
} }
for (i = 0; deps[i]; i++) { for (i = 0; deps[i]; i++) {
if (!strstarts(deps[i], "ccan/")) if (!strstarts(deps[i], "ccan/")) {
non_ccan_deps = true;
continue; continue;
}
if (!add_dep(m, &m->deps, deps[i], score)) if (!add_dep(m, &m->deps, deps[i], score))
return; return;
......
...@@ -58,7 +58,8 @@ void build_objects(struct manifest *m, ...@@ -58,7 +58,8 @@ void build_objects(struct manifest *m,
if (!errors) { if (!errors) {
score->pass = true; score->pass = true;
score->score = score->total - warnings; score->score = score->total - warnings;
} } else
build_failed = true;
} }
static void check_objs_build(struct manifest *m, static void check_objs_build(struct manifest *m,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment