]> git.ozlabs.org Git - ccan/commitdiff
tdb: missing files from checkin.
authorRusty Russell <rusty@rustcorp.com.au>
Sun, 12 Sep 2010 11:51:25 +0000 (21:21 +0930)
committerRusty Russell <rusty@rustcorp.com.au>
Sun, 12 Sep 2010 11:51:25 +0000 (21:21 +0930)
ccan/tdb/test/logging.c [new file with mode: 0644]
ccan/tdb/test/logging.h [new file with mode: 0644]
ccan/tdb/test/run-check.c

diff --git a/ccan/tdb/test/logging.c b/ccan/tdb/test/logging.c
new file mode 100644 (file)
index 0000000..fa413f6
--- /dev/null
@@ -0,0 +1,33 @@
+#include "logging.h"
+#include <ccan/tap/tap.h>
+#include <stdarg.h>
+#include <stdlib.h>
+#include <string.h>
+#include <stdio.h>
+
+bool suppress_logging = false;
+const char *log_prefix = "";
+
+/* Turn log messages into tap diag messages. */
+static void taplog(struct tdb_context *tdb,
+                  enum tdb_debug_level level,
+                  const char *fmt, ...)
+{
+       va_list ap;
+       char line[200];
+
+       if (suppress_logging)
+               return;
+
+       va_start(ap, fmt);
+       vsprintf(line, fmt, ap);
+       va_end(ap);
+
+       /* Strip trailing \n: diag adds it. */
+       if (line[0] && line[strlen(line)-1] == '\n')
+               diag("%s%.*s", log_prefix, strlen(line)-1, line);
+       else
+               diag("%s%s", log_prefix, line);
+}
+
+struct tdb_logging_context taplogctx = { taplog, NULL };
diff --git a/ccan/tdb/test/logging.h b/ccan/tdb/test/logging.h
new file mode 100644 (file)
index 0000000..6745a32
--- /dev/null
@@ -0,0 +1,10 @@
+#ifndef TDB_TEST_LOGGING_H
+#define TDB_TEST_LOGGING_H
+#include <ccan/tdb/tdb.h>
+#include <stdbool.h>
+
+extern bool suppress_logging;
+extern const char *log_prefix;
+extern struct tdb_logging_context taplogctx;
+
+#endif /* TDB_TEST_LOGGING_H */
index b76d91bbb96c469217a26dd4955a00f4a88619ea..fe0842d3d0aa62f260e93ee307b21412b4d72eb6 100644 (file)
@@ -35,12 +35,14 @@ int main(int argc, char *argv[])
        ok1(tdb_check(tdb, NULL, NULL) == 0);
        tdb_close(tdb);
 
-       tdb = tdb_open("run-check.tdb", 1024, 0, O_RDWR, 0);
+       tdb = tdb_open_ex("run-check.tdb", 1024, 0, O_RDWR, 0,
+                         &taplogctx, NULL);
        ok1(tdb);
        ok1(tdb_check(tdb, NULL, NULL) == 0);
        tdb_close(tdb);
 
-       tdb = tdb_open("test/tdb.corrupt", 1024, 0, O_RDWR, 0);
+       tdb = tdb_open_ex("test/tdb.corrupt", 1024, 0, O_RDWR, 0,
+                         &taplogctx, NULL);
        ok1(tdb);
        ok1(tdb_check(tdb, NULL, NULL) == -1);
        ok1(tdb_error(tdb) == TDB_ERR_CORRUPT);