#include <string.h>
#include <err.h>
#include <ctype.h>
+#include <ccan/talloc/talloc.h>
static unsigned int verbose = 0;
static LIST_HEAD(compulsory_tests);
static LIST_HEAD(normal_tests);
static LIST_HEAD(finished_tests);
+bool safe_mode = false;
static void usage(const char *name)
{
- fprintf(stderr, "Usage: %s [-s] [-v] [-d <dirname>]\n"
+ fprintf(stderr, "Usage: %s [-s] [-n] [-v] [-d <dirname>]\n"
" -v: verbose mode\n"
" -s: simply give one line per FAIL and total score\n"
- " -d: use this directory instead of the current one\n",
+ " -d: use this directory instead of the current one\n"
+ " -n: do not compile anything\n",
name);
exit(1);
}
else
this_score = 0;
+ list_del(&i->list);
+ list_add_tail(&finished_tests, &i->list);
+
*score += this_score;
if (summary) {
printf("%s FAILED (%u/%u)\n",
if (verbose)
indent_print(i->describe(m, result));
- list_del(&i->list);
- list_add_tail(&finished_tests, &i->list);
- return false;
+ } else {
+ printf("%s\n", i->describe(m, result));
+
+ if (i->handle)
+ i->handle(m, result);
}
- printf("%s\n", i->describe(m, result));
+ /* Skip any tests which depend on this one. */
+ list_for_each(&i->dependencies, d, node) {
+ list_del(&d->dependent->list);
+ list_add(&finished_tests, &d->dependent->list);
+ if (verbose)
+ printf(" -> skipping %s\n", d->dependent->name);
+ *total_score += d->dependent->total_score;
+ }
- if (i->handle)
- i->handle(m, result);
- list_del(&i->list);
- list_add_tail(&finished_tests, &i->list);
return false;
}
/* I'd love to use long options, but that's not standard. */
/* FIXME: getopt_long ccan package? */
- while ((c = getopt(argc, argv, "sd:v")) != -1) {
+ while ((c = getopt(argc, argv, "sd:vn")) != -1) {
switch (c) {
case 'd':
if (chdir(optarg) != 0)
case 'v':
verbose++;
break;
+ case 'n':
+ safe_mode = true;
+ break;
default:
usage(argv[0]);
}
if (optind < argc)
usage(argv[0]);
- m = get_manifest();
+ m = get_manifest(talloc_autofree_context());
init_tests();
run_test(i, summary, &score, &total_score, m);
}
printf("Total score: %u/%u\n", score, total_score);
-
return 0;
}