wintest: add option to select the dns backend
[Samba/gebeck_regimport.git] / lib / ntdb / test / run-01-new_database.c
blobae70e86e0728328d8144ed26d15f4f21c6f20986
1 #include <ccan/failtest/failtest_override.h>
2 #include "ntdb-source.h"
3 #include "tap-interface.h"
4 #include <ccan/failtest/failtest.h>
5 #include "logging.h"
6 #include "failtest_helper.h"
8 int main(int argc, char *argv[])
10 unsigned int i;
11 struct ntdb_context *ntdb;
12 int flags[] = { NTDB_INTERNAL, NTDB_DEFAULT, NTDB_NOMMAP,
13 NTDB_INTERNAL|NTDB_CONVERT, NTDB_CONVERT,
14 NTDB_NOMMAP|NTDB_CONVERT };
16 failtest_init(argc, argv);
17 failtest_hook = block_repeat_failures;
18 failtest_exit_check = exit_check_log;
19 plan_tests(sizeof(flags) / sizeof(flags[0]) * 3);
20 for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) {
21 ntdb = ntdb_open("run-new_database.ntdb", flags[i],
22 O_RDWR|O_CREAT|O_TRUNC, 0600, &tap_log_attr);
23 if (!ok1(ntdb))
24 failtest_exit(exit_status());
26 failtest_suppress = true;
27 ok1(ntdb_check(ntdb, NULL, NULL) == 0);
28 failtest_suppress = false;
29 ntdb_close(ntdb);
30 if (!ok1(tap_log_messages == 0))
31 break;
33 failtest_exit(exit_status());