X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Frun_tests.c;h=278b65227a3bdeddbe9631c116c5e31a8b643cd5;hp=1a8d75ea4548ecc28836cd2b9d813108103a35d5;hb=04160dbda10c78fbd4ee452d0af89d540e20b09a;hpb=650c775ff00cccd03fc84e7789a03c51d9839004 diff --git a/tools/run_tests.c b/tools/run_tests.c index 1a8d75ea..278b6522 100644 --- a/tools/run_tests.c +++ b/tools/run_tests.c @@ -4,14 +4,13 @@ #include #include #include +#include +#include #include "ccan/tap/tap.h" #include "ccan/talloc/talloc.h" -#include "ccan/string/string.h" - -#define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan -I." - -/* FIXME: Use build bug later. */ -#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) +#include "ccan/str/str.h" +#include "ccan/array_size/array_size.h" +#include "tools.h" static struct test *tests = NULL; static struct obj *objs = NULL; @@ -20,7 +19,8 @@ static int verbose; struct test_type { const char *name; - void (*testfn)(struct test_type *t, const char *name); + void (*buildfn)(const char *dir, struct test_type *t, const char *name); + void (*runfn)(const char *name); }; struct test @@ -99,12 +99,12 @@ static void add_obj(const char *testdir, const char *name) objs = obj; } -static int build(const char *name, int fail) +static int build(const char *dir, const char *name, int fail) { const char *cmd; int ret; - cmd = talloc_asprintf(name, "gcc " CFLAGS " %s -o %s %s %s%s", + cmd = talloc_asprintf(name, "gcc " CFLAGS " %s -o %s %s %s -L. -lccan %s", fail ? "-DFAIL" : "", output_name(name), name, obj_list(), verbose ? "" : "> /dev/null 2>&1"); @@ -119,23 +119,27 @@ static int build(const char *name, int fail) return ret; } -static void compile_ok(struct test_type *t, const char *name) +static void compile_ok(const char *dir, struct test_type *t, const char *name) { - ok(build(name, 0) == 0, "%s %s", t->name, name); + ok(build(dir, name, 0) == 0, "%s %s", t->name, name); } -static void compile_fail(struct test_type *t, const char *name) +static void compile_fail(const char *dir, struct test_type *t, const char *name) { - if (build(name, 0) != 0) + if (build(dir, name, 0) != 0) fail("non-FAIL build %s", name); else - ok(build(name, 1) > 0, "%s %s", t->name, name); + ok(build(dir, name, 1) > 0, "%s %s", t->name, name); +} + +static void no_run(const char *name) +{ } static void run(const char *name) { - if (system(output_name(name)) == -1) - fail("running %s had error %m", name); + if (system(output_name(name)) != 0) + fail("running %s had error", name); } static void cleanup(const char *name) @@ -144,9 +148,10 @@ static void cleanup(const char *name) } static struct test_type test_types[] = { - { "compile_ok", compile_ok }, - { "compile_fail", compile_fail }, - { "run", compile_ok }, + { "compile_ok", compile_ok, no_run }, + { "compile_fail", compile_fail, no_run }, + { "run", compile_ok, run }, + { "api", compile_ok, run }, }; int main(int argc, char *argv[]) @@ -189,20 +194,19 @@ int main(int argc, char *argv[]) } } - plan_tests(num_tests + num_objs); + plan_tests(num_tests + num_objs + (num_objs ? 1 : 0)); /* First all the extra object compilations. */ compile_objs(); /* Do all the test compilations. */ for (test = tests; test; test = test->next) - test->type->testfn(test->type, test->name); + test->type->buildfn(argv[1], test->type, test->name); cleanup_objs(); /* Now run all the ones which wanted to run. */ for (test = tests; test; test = test->next) { - if (streq(test->type->name, "run")) - run(test->name); + test->type->runfn(test->name); cleanup(test->name); }