X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fccanlint%2Ftests%2Fexamples_run.c;h=077ea2487b431a1f365702f94b9ff4f78473df5d;hp=3cb456d49fa69d38f073f76229aa706b1ccb8e5a;hb=30d5682cc59801c553d71c2d9ababbbd48578576;hpb=a40b318e7a07a452ae7456053727bd11b2fa49b4 diff --git a/tools/ccanlint/tests/examples_run.c b/tools/ccanlint/tests/examples_run.c index 3cb456d4..077ea248 100644 --- a/tools/ccanlint/tests/examples_run.c +++ b/tools/ccanlint/tests/examples_run.c @@ -26,7 +26,7 @@ static const char *can_run(struct manifest *m) /* Very dumb scanner, allocates %s-strings. */ static bool scan_forv(const void *ctx, - const char *input, const char *fmt, const va_list *args) + const char *input, const char *fmt, va_list *args) { va_list ap; bool ret; @@ -272,10 +272,11 @@ static void run_examples(struct manifest *m, bool keep, } struct ccanlint examples_run = { - .key = "examples-run", + .key = "examples_run", .name = "Module examples with expected output give that output", .check = run_examples, .can_run = can_run, + .needs = "examples_compile" }; -REGISTER_TEST(examples_run, &examples_compile, NULL); +REGISTER_TEST(examples_run);