X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=tools%2Fccanlint%2Fccanlint.h;h=3a79fb94245daec756da410f35d48138a571bd56;hb=5393341ce6bc2091c088696cd5fe8f9c958bf6a7;hp=ad38302861046cdab7475cbef03f22365b51db0f;hpb=fb4c4c3ddc24772f71a64ec02d2c9ddaeb6e9f6b;p=ccan-lca-2011.git diff --git a/tools/ccanlint/ccanlint.h b/tools/ccanlint/ccanlint.h index ad38302..3a79fb9 100644 --- a/tools/ccanlint/ccanlint.h +++ b/tools/ccanlint/ccanlint.h @@ -11,6 +11,11 @@ #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). */