summaryrefslogtreecommitdiff
path: root/lib/tdb2/test/run-tdb_foreach.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2012-06-18 22:30:26 +0930
committerRusty Russell <rusty@rustcorp.com.au>2012-06-19 05:38:06 +0200
commit16cc345d4f84367e70e133200f7aa335c2aae8c6 (patch)
tree955a33c25c19f3127e24ba6b0e108da6b1f7f804 /lib/tdb2/test/run-tdb_foreach.c
parent76758b9767fad45ff144bbfef3ab84bca5d4650e (diff)
downloadsamba-16cc345d4f84367e70e133200f7aa335c2aae8c6.tar.gz
samba-16cc345d4f84367e70e133200f7aa335c2aae8c6.tar.bz2
samba-16cc345d4f84367e70e133200f7aa335c2aae8c6.zip
TDB2: Goodbye TDB2, Hello NTDB.
This renames everything from tdb2 to ntdb: importantly, we no longer use the tdb_ namespace, so you can link against both ntdb and tdb if you want to. This also enables building of standalone ntdb by the autobuild script. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'lib/tdb2/test/run-tdb_foreach.c')
-rw-r--r--lib/tdb2/test/run-tdb_foreach.c86
1 files changed, 0 insertions, 86 deletions
diff --git a/lib/tdb2/test/run-tdb_foreach.c b/lib/tdb2/test/run-tdb_foreach.c
deleted file mode 100644
index b1eb2de217..0000000000
--- a/lib/tdb2/test/run-tdb_foreach.c
+++ /dev/null
@@ -1,86 +0,0 @@
-#include "tdb2-source.h"
-#include "tap-interface.h"
-#include "logging.h"
-
-static int drop_count(struct tdb_context *tdb, unsigned int *count)
-{
- if (--(*count) == 0)
- return 1;
- return 0;
-}
-
-static int set_found(struct tdb_context *tdb, bool found[3])
-{
- unsigned int idx;
-
- if (strcmp(tdb_name(tdb), "run-tdb_foreach0.tdb") == 0)
- idx = 0;
- else if (strcmp(tdb_name(tdb), "run-tdb_foreach1.tdb") == 0)
- idx = 1;
- else if (strcmp(tdb_name(tdb), "run-tdb_foreach2.tdb") == 0)
- idx = 2;
- else
- abort();
-
- if (found[idx])
- abort();
- found[idx] = true;
- return 0;
-}
-
-int main(int argc, char *argv[])
-{
- unsigned int i, count;
- bool found[3];
- struct tdb_context *tdb0, *tdb1, *tdb2;
- int flags[] = { TDB_DEFAULT, TDB_NOMMAP,
- TDB_CONVERT, TDB_NOMMAP|TDB_CONVERT };
-
- plan_tests(sizeof(flags) / sizeof(flags[0]) * 8);
- for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) {
- tdb0 = tdb_open("run-tdb_foreach0.tdb", flags[i],
- O_RDWR|O_CREAT|O_TRUNC, 0600, &tap_log_attr);
- tdb1 = tdb_open("run-tdb_foreach1.tdb", flags[i],
- O_RDWR|O_CREAT|O_TRUNC, 0600, &tap_log_attr);
- tdb2 = tdb_open("run-tdb_foreach2.tdb", flags[i],
- O_RDWR|O_CREAT|O_TRUNC, 0600, &tap_log_attr);
-
- memset(found, 0, sizeof(found));
- tdb_foreach(set_found, found);
- ok1(found[0] && found[1] && found[2]);
-
- /* Test premature iteration termination */
- count = 1;
- tdb_foreach(drop_count, &count);
- ok1(count == 0);
-
- tdb_close(tdb1);
- memset(found, 0, sizeof(found));
- tdb_foreach(set_found, found);
- ok1(found[0] && !found[1] && found[2]);
-
- tdb_close(tdb2);
- memset(found, 0, sizeof(found));
- tdb_foreach(set_found, found);
- ok1(found[0] && !found[1] && !found[2]);
-
- tdb1 = tdb_open("run-tdb_foreach1.tdb", flags[i],
- O_RDWR, 0600, &tap_log_attr);
- memset(found, 0, sizeof(found));
- tdb_foreach(set_found, found);
- ok1(found[0] && found[1] && !found[2]);
-
- tdb_close(tdb0);
- memset(found, 0, sizeof(found));
- tdb_foreach(set_found, found);
- ok1(!found[0] && found[1] && !found[2]);
-
- tdb_close(tdb1);
- memset(found, 0, sizeof(found));
- tdb_foreach(set_found, found);
- ok1(!found[0] && !found[1] && !found[2]);
- ok1(tap_log_messages == 0);
- }
-
- return exit_status();
-}