X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftdb%2Ftest%2Frun-nested-traverse.c;h=7e0a71dd325363ec018a29110cbef2039337443f;hp=df4c7da13374d8befdcc37aa1a79590717e9d739;hb=a1ace0cd114e0c588d6ce1b9e7386af11716e0bd;hpb=15758cca5f15f362edaf9da25f831d10e58b1b9a diff --git a/ccan/tdb/test/run-nested-traverse.c b/ccan/tdb/test/run-nested-traverse.c index df4c7da1..7e0a71dd 100644 --- a/ccan/tdb/test/run-nested-traverse.c +++ b/ccan/tdb/test/run-nested-traverse.c @@ -1,20 +1,25 @@ #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 "lock-tracking.h" +#define fcntl fcntl_with_lockcheck +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#undef fcntl #include #include #include -#include "external-transaction.h" +#include "external-agent.h" +#include "logging.h" -static int agent; +static struct agent *agent; static bool correct_key(TDB_DATA key) { @@ -41,11 +46,13 @@ 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_START, tdb_name(tdb)) + == WOULD_HAVE_BLOCKED); 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_START, tdb_name(tdb)) + == WOULD_HAVE_BLOCKED); return 0; } @@ -54,16 +61,20 @@ int main(int argc, char *argv[]) struct tdb_context *tdb; TDB_DATA key, data; - plan_tests(15); + plan_tests(17); 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); + tdb = tdb_open_ex("run-nested-traverse.tdb", 1024, TDB_CLEAR_IF_FIRST, + O_CREAT|O_TRUNC|O_RDWR, 0600, &taplogctx, NULL); ok1(tdb); - ok1(external_agent_transaction(agent, tdb_name(tdb))); + ok1(external_agent_operation(agent, OPEN, tdb_name(tdb)) == SUCCESS); + ok1(external_agent_operation(agent, TRANSACTION_START, tdb_name(tdb)) + == SUCCESS); + ok1(external_agent_operation(agent, TRANSACTION_COMMIT, tdb_name(tdb)) + == SUCCESS); key.dsize = strlen("hi"); key.dptr = (void *)"hi";