| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #include <tools/ccanlint/ccanlint.h>
- #include <tools/tools.h>
- #include <ccan/str/str.h>
- #include <ccan/foreach/foreach.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <unistd.h>
- #include <limits.h>
- #include <errno.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <err.h>
- #include <string.h>
- #include <ctype.h>
- #include "reduce_features.h"
- #include "build.h"
- static const char *can_build(struct manifest *m)
- {
- if (safe_mode)
- return "Safe mode enabled";
- return NULL;
- }
- static void check_depends_built_without_features(struct manifest *m,
- unsigned int *timeleft,
- struct score *score)
- {
- struct list_head *list;
- struct manifest *i;
- char *flags;
- flags = tal_fmt(score, "%s %s", cflags, REDUCE_FEATURES_FLAGS);
- foreach_ptr(list, &m->deps, &m->test_deps) {
- list_for_each(list, i, list) {
- char *errstr = build_submodule(i, flags,
- COMPILE_NOFEAT);
- if (errstr) {
- score->error = tal_fmt(score,
- "Dependency %s"
- " did not build:\n%s",
- i->modname,
- errstr);
- return;
- }
- }
- }
- score->pass = true;
- score->score = score->total;
- }
- struct ccanlint depends_build_without_features = {
- .key = "depends_build_without_features",
- .name = "Module's CCAN dependencies can be found or built (reduced features)",
- .check = check_depends_built_without_features,
- .can_run = can_build,
- .needs = "depends_build reduce_features"
- };
- REGISTER_TEST(depends_build_without_features);
|