#include <fcntl.h>
 #include "logging.h"
 
-#define NUM_TESTS 50000
+#define NUM_TESTS 1000
 
 static bool store_all(struct tdb_context *tdb)
 {
        struct tdb_context *tdb;
        int flags[] = { TDB_DEFAULT, TDB_NOMMAP,
                        TDB_CONVERT, TDB_NOMMAP|TDB_CONVERT,
+                       TDB_VERSION1, TDB_VERSION1|TDB_NOMMAP,
+                       TDB_VERSION1|TDB_CONVERT,
+                       TDB_VERSION1|TDB_NOMMAP|TDB_CONVERT
        };
 
        plan_tests(sizeof(flags) / sizeof(flags[0]) * 6 + 1);
 
                                                .fn = failhash } };
 
        hattr.base.next = &tap_log_attr;
-       plan_tests(1 + 2 * NUM_RECORDS + 1);
+       plan_tests(1 + NUM_RECORDS + 2);
 
        tdb = tdb_open("run-missing-entries.tdb", TDB_INTERNAL,
                       O_RDWR|O_CREAT|O_TRUNC, 0600, &hattr);
-       ok1(tdb);
-       if (tdb) {
+       if (ok1(tdb)) {
                for (i = 0; i < NUM_RECORDS; i++) {
                        ok1(tdb_store(tdb, key, data, TDB_REPLACE) == 0);
-                       ok1(tdb_check(tdb, NULL, NULL) == 0);
                }
+               ok1(tdb_check(tdb, NULL, NULL) == 0);
                tdb_close(tdb);
        }