]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/ccanlint.h
tdb2: update design doc.
[ccan] / tools / ccanlint / ccanlint.h
index ad38302861046cdab7475cbef03f22365b51db0f..3a79fb94245daec756da410f35d48138a571bd56 100644 (file)
 
 #define REGISTER_TEST(name, ...) 
 
+/* 1 == Describe results for partial failures.
+   2 == Describe gory details.
+   3 == Describe every action. */
+extern unsigned int verbose;
+
 struct manifest {
        char *dir;
        /* The module name, ie. final element of dir name */
@@ -139,6 +144,9 @@ struct ccan_file {
 
        /* If this file gets compiled (eg. .C file to .o file), result here. */
        char *compiled;
+
+       /* Compiled with coverage information. */
+       char *cov_compiled;
 };
 
 /* A new ccan_file, with the given name (talloc_steal onto returned value). */