run-01-new_database.c 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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"
  7. #include "helprun-external-agent.h"
  8. int main(int argc, char *argv[])
  9. {
  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 };
  15. failtest_init(argc, argv);
  16. failtest_hook = block_repeat_failures;
  17. failtest_exit_check = exit_check_log;
  18. plan_tests(sizeof(flags) / sizeof(flags[0]) * 3);
  19. for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) {
  20. ntdb = ntdb_open("run-new_database.ntdb", flags[i]|MAYBE_NOSYNC,
  21. O_RDWR|O_CREAT|O_TRUNC, 0600, &tap_log_attr);
  22. if (!ok1(ntdb))
  23. failtest_exit(exit_status());
  24. failtest_suppress = true;
  25. ok1(ntdb_check(ntdb, NULL, NULL) == 0);
  26. failtest_suppress = false;
  27. ntdb_close(ntdb);
  28. if (!ok1(tap_log_messages == 0))
  29. break;
  30. }
  31. failtest_exit(exit_status());
  32. /*
  33. * We will never reach this but the compiler complains if we do not
  34. * return in this function.
  35. */
  36. return EFAULT;
  37. }