]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb/tools/tdbtorture.c
tdb: fix tdbtorture seed printing, plus remove CLEAR_IF_FIRST
[ccan] / ccan / tdb / tools / tdbtorture.c
index 58bef81a201ed4aca26448763742ab3a4a0301d1..0d5bcd2baf656ad67553e7e16114ddb09a9e3627 100644 (file)
@@ -252,16 +252,12 @@ static void send_count_and_suicide(int sig)
 
 static int run_child(int i, int seed, unsigned num_loops, unsigned start)
 {
-       db = tdb_open_ex("torture.tdb", hash_size, TDB_CLEAR_IF_FIRST, 
+       db = tdb_open_ex("torture.tdb", hash_size, TDB_DEFAULT, 
                         O_RDWR | O_CREAT, 0600, &log_ctx, NULL);
        if (!db) {
                fatal("db open failed");
        }
 
-       if (seed == -1) {
-               seed = (getpid() + time(NULL)) & 0x7FFFFFFF;
-       }
-
        srand(seed + i);
        srandom(seed + i);
 
@@ -336,6 +332,10 @@ int main(int argc, char * const *argv)
 
        unlink("torture.tdb");
 
+       if (seed == -1) {
+               seed = (getpid() + time(NULL)) & 0x7FFFFFFF;
+       }
+
        if (num_procs == 1 && !kill_random) {
                /* Don't fork for this case, makes debugging easier. */
                error_count = run_child(0, seed, num_loops, 0);