From 10230829df5c5624edaa5fabaf84c9ac5bc31285 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 30 Jan 2012 15:31:05 +1030 Subject: tdb2:tdbtorture: use TEST_DATA_PREFIX for files TDB2 version of commit b83672b36c1ea8c35833c40c3919b63809f16624. Signed-off-by: Rusty Russell --- lib/tdb2/tools/tdb2torture.c | 43 ++++++++++++++++++++++++++++++++++--------- 1 file changed, 34 insertions(+), 9 deletions(-) (limited to 'lib/tdb2/tools') diff --git a/lib/tdb2/tools/tdb2torture.c b/lib/tdb2/tools/tdb2torture.c index c2a4eaa0fb..db6515d0cf 100644 --- a/lib/tdb2/tools/tdb2torture.c +++ b/lib/tdb2/tools/tdb2torture.c @@ -257,14 +257,14 @@ static void send_count_and_suicide(int sig) kill(getpid(), SIGUSR2); } -static int run_child(int i, int seed, unsigned num_loops, unsigned start, - int tdb_flags) +static int run_child(const char *filename, int i, int seed, unsigned num_loops, + unsigned start, int tdb_flags) { struct sigaction act = { .sa_sigaction = segv_handler, .sa_flags = SA_SIGINFO }; sigaction(11, &act, NULL); - db = tdb_open("torture.tdb", tdb_flags, O_RDWR | O_CREAT, 0600, + db = tdb_open(filename, tdb_flags, O_RDWR | O_CREAT, 0600, &log_attr); if (!db) { fatal(NULL, "db open failed"); @@ -317,6 +317,24 @@ static int run_child(int i, int seed, unsigned num_loops, unsigned start, return (error_count < 100 ? error_count : 100); } +static char *test_path(const char *filename) +{ + const char *prefix = getenv("TEST_DATA_PREFIX"); + + if (prefix) { + char *path = NULL; + int ret; + + ret = asprintf(&path, "%s/%s", prefix, filename); + if (ret == -1) { + return NULL; + } + return path; + } + + return strdup(filename); +} + int main(int argc, char * const *argv) { int i, seed = -1; @@ -328,6 +346,7 @@ int main(int argc, char * const *argv) int kill_random = 0; int *done; int tdb_flags = TDB_DEFAULT; + char *test_tdb; log_attr.base.attr = TDB_ATTRIBUTE_LOG; log_attr.base.next = &seed_attr; @@ -364,7 +383,9 @@ int main(int argc, char * const *argv) } } - unlink("torture.tdb"); + test_tdb = test_path("torture.tdb"); + + unlink(test_tdb); if (seed == -1) { seed = (getpid() + time(NULL)) & 0x7FFFFFFF; @@ -373,7 +394,8 @@ int main(int argc, char * const *argv) if (num_procs == 1 && !kill_random) { /* Don't fork for this case, makes debugging easier. */ - error_count = run_child(0, seed, num_loops, 0, tdb_flags); + error_count = run_child(test_tdb, 0, seed, num_loops, 0, + tdb_flags); goto done; } @@ -399,7 +421,8 @@ int main(int argc, char * const *argv) #endif ); } - exit(run_child(i, seed, num_loops, 0, tdb_flags)); + exit(run_child(test_tdb, i, seed, num_loops, 0, + tdb_flags)); } } @@ -455,8 +478,9 @@ int main(int argc, char * const *argv) } pids[j] = fork(); if (pids[j] == 0) - exit(run_child(j, seed, num_loops, - done[j], tdb_flags)); + exit(run_child(test_tdb, j, seed, + num_loops, done[j], + tdb_flags)); printf("Restarting child %i for %u-%u\n", j, done[j], num_loops); continue; @@ -480,7 +504,7 @@ int main(int argc, char * const *argv) done: if (error_count == 0) { - db = tdb_open("torture.tdb", TDB_DEFAULT, O_RDWR | O_CREAT, + db = tdb_open(test_tdb, TDB_DEFAULT, O_RDWR | O_CREAT, 0600, &log_attr); if (!db) { fatal(db, "db open failed"); @@ -494,5 +518,6 @@ done: printf("OK\n"); } + free(test_tdb); return error_count; } -- cgit