X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftdb%2Ftest%2Frun-nested-traverse.c;h=054af0d21bc3c5fb62c8b4d34a4632f294d9f97c;hb=d0b36a7cb734a9e3d290bb3047c012859ce171a3;hp=df4c7da13374d8befdcc37aa1a79590717e9d739;hpb=15758cca5f15f362edaf9da25f831d10e58b1b9a;p=ccan diff --git a/ccan/tdb/test/run-nested-traverse.c b/ccan/tdb/test/run-nested-traverse.c index df4c7da1..054af0d2 100644 --- a/ccan/tdb/test/run-nested-traverse.c +++ b/ccan/tdb/test/run-nested-traverse.c @@ -1,20 +1,21 @@ #define _XOPEN_SOURCE 500 -#include "tdb/tdb.h" -#include "tdb/io.c" -#include "tdb/tdb.c" -#include "tdb/lock.c" -#include "tdb/freelist.c" -#include "tdb/traverse.c" -#include "tdb/transaction.c" -#include "tdb/error.c" -#include "tdb/open.c" -#include "tap/tap.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include #include #include "external-transaction.h" -static int agent; +static struct agent *agent; static bool correct_key(TDB_DATA key) { @@ -41,11 +42,11 @@ static int traverse1(struct tdb_context *tdb, TDB_DATA key, TDB_DATA data, { ok1(correct_key(key)); ok1(correct_data(data)); - ok1(!external_agent_transaction(agent, tdb_name(tdb))); + ok1(!external_agent_operation(agent, TRANSACTION, tdb_name(tdb))); tdb_traverse(tdb, traverse2, NULL); /* That should *not* release the transaction lock! */ - ok1(!external_agent_transaction(agent, tdb_name(tdb))); + ok1(!external_agent_operation(agent, TRANSACTION, tdb_name(tdb))); return 0; } @@ -56,14 +57,14 @@ int main(int argc, char *argv[]) plan_tests(15); agent = prepare_external_agent(); - if (agent < 0) + if (!agent) err(1, "preparing agent"); tdb = tdb_open("/tmp/test3.tdb", 1024, TDB_CLEAR_IF_FIRST, O_CREAT|O_TRUNC|O_RDWR, 0600); ok1(tdb); - ok1(external_agent_transaction(agent, tdb_name(tdb))); + ok1(external_agent_operation(agent, TRANSACTION, tdb_name(tdb))); key.dsize = strlen("hi"); key.dptr = (void *)"hi";