]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/ccanlint.h
ccanlint: run tests under valgrind initially.
[ccan] / tools / ccanlint / ccanlint.h
index c57f92037c6ba3a8197c8c48e102369f31db8dcd..9f15ef39062060304fbb09df45151a162a717a79 100644 (file)
@@ -179,6 +179,9 @@ struct ccan_file {
        /* Compiled with coverage information. */
        char *cov_compiled;
 
+       /* Filename containing output from valgrind. */
+       char *valgrind_log;
+
        /* Leak output from valgrind. */
        char *leak_info;
 
@@ -237,6 +240,9 @@ struct dependent {
        struct ccanlint *dependent;
 };
 
+/* Is this test excluded (cmdline or _info). */
+bool is_excluded(const char *name);
+
 /* Are we happy to compile stuff, or just non-intrusive tests? */
 extern bool safe_mode;