]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb/test/run-zero-append.c
tdb: delete from CCAN.
[ccan] / ccan / tdb / test / run-zero-append.c
diff --git a/ccan/tdb/test/run-zero-append.c b/ccan/tdb/test/run-zero-append.c
deleted file mode 100644 (file)
index a869adc..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-#define _XOPEN_SOURCE 500
-#include <ccan/tdb/tdb.h>
-#include <ccan/tdb/io.c>
-#include <ccan/tdb/tdb.c>
-#include <ccan/tdb/lock.c>
-#include <ccan/tdb/freelist.c>
-#include <ccan/tdb/traverse.c>
-#include <ccan/tdb/transaction.c>
-#include <ccan/tdb/error.c>
-#include <ccan/tdb/open.c>
-#include <ccan/tdb/check.c>
-#include <ccan/tdb/hash.c>
-#include <ccan/tap/tap.h>
-#include <stdlib.h>
-#include <err.h>
-#include "logging.h"
-
-int main(int argc, char *argv[])
-{
-       struct tdb_context *tdb;
-       TDB_DATA key, data;
-
-       plan_tests(4);
-       tdb = tdb_open_ex(NULL, 1024, TDB_INTERNAL, O_CREAT|O_TRUNC|O_RDWR,
-                         0600, &taplogctx, NULL);
-       ok1(tdb);
-
-       /* Tickle bug on appending zero length buffer to zero length buffer. */
-       key.dsize = strlen("hi");
-       key.dptr = (void *)"hi";
-       data.dptr = (void *)"world";
-       data.dsize = 0;
-
-       ok1(tdb_append(tdb, key, data) == 0);
-       ok1(tdb_append(tdb, key, data) == 0);
-       data = tdb_fetch(tdb, key);
-       ok1(data.dsize == 0);
-       tdb_close(tdb);
-       free(data.dptr);
-
-       return exit_status();
-}