summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDavid Disseldorp <ddiss@samba.org>2014-08-15 14:47:49 +0200
committerDavid Disseldorp <ddiss@samba.org>2014-08-18 13:26:32 +0200
commit4f58041639168caee379f8f5b936a30f1a71f0a6 (patch)
treea805eed32c3957380cb48fec7a14205fe3f4ec8c /lib
parent3dfca72dba54434725b1a66512bf5eec78da0886 (diff)
downloadsamba-4f58041639168caee379f8f5b936a30f1a71f0a6.tar.gz
samba-4f58041639168caee379f8f5b936a30f1a71f0a6.tar.xz
samba-4f58041639168caee379f8f5b936a30f1a71f0a6.zip
tdbtorture: print details when run with -n 1
Currently tdbtorture prints the test details (processes, loops, etc.) from the first forked child process. When run with -n 1 (one process), the test is run from within the parent and no details are printed. This change ensures that they are. Signed-off-by: David Disseldorp <ddiss@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Autobuild-User(master): David Disseldorp <ddiss@samba.org> Autobuild-Date(master): Mon Aug 18 13:26:32 CEST 2014 on sn-devel-104
Diffstat (limited to 'lib')
-rw-r--r--lib/tdb/tools/tdbtorture.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/tdb/tools/tdbtorture.c b/lib/tdb/tools/tdbtorture.c
index 3e26f65242..9278688104 100644
--- a/lib/tdb/tools/tdbtorture.c
+++ b/lib/tdb/tools/tdbtorture.c
@@ -350,6 +350,10 @@ int main(int argc, char * const *argv)
seed = (getpid() + time(NULL)) & 0x7FFFFFFF;
}
+ printf("Testing with %d processes, %d loops, %d hash_size, seed=%d%s\n",
+ num_procs, num_loops, hash_size, seed,
+ (always_transaction ? " (all within transactions)" : ""));
+
if (num_procs == 1 && !kill_random) {
/* Don't fork for this case, makes debugging easier. */
error_count = run_child(test_tdb, 0, seed, num_loops, 0);
@@ -376,10 +380,6 @@ int main(int argc, char * const *argv)
for (i=0;i<num_procs;i++) {
if ((pids[i]=fork()) == 0) {
close(pfds[0]);
- if (i == 0) {
- printf("Testing with %d processes, %d loops, %d hash_size, seed=%d%s\n",
- num_procs, num_loops, hash_size, seed, always_transaction ? " (all within transactions)" : "");
- }
exit(run_child(test_tdb, i, seed, num_loops, 0));
}
}