]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/compulsory_tests/compile_tests.c
ccanlint: timeout, and implement -t option for quicker tests.
[ccan] / tools / ccanlint / compulsory_tests / compile_tests.c
index a614adb3ea5df1cff665d554ed35260edf42f1ac..1e184f2d24242201542840e006f4b3f283dc5a2d 100644 (file)
@@ -80,7 +80,7 @@ struct compile_tests_result {
        const char *output;
 };
 
-static void *do_compile_tests(struct manifest *m)
+static void *do_compile_tests(struct manifest *m, unsigned int *timeleft)
 {
        struct list_head *list = talloc(m, struct list_head);
        char *cmdout;
@@ -183,7 +183,7 @@ static const char *describe_compile_tests(struct manifest *m,
 
 struct ccanlint compile_tests = {
        .key = "compile",
-       .name = "Compile tests succeed",
+       .name = "Module tests compile",
        .score = score_compile_tests,
        .check = do_compile_tests,
        .describe = describe_compile_tests,