diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-04-22 13:59:22 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2010-04-22 13:59:22 +0930 |
commit | 163603f4f4ce47fdf9f2308691da4499fdc7cee4 (patch) | |
tree | 22f993cf9c169b8941d8a88c41cbb0ef6859dc55 /ctdb/lib | |
parent | bca9d2764ea3b8f885270695fa6805aae77633e5 (diff) | |
download | samba-163603f4f4ce47fdf9f2308691da4499fdc7cee4.tar.gz samba-163603f4f4ce47fdf9f2308691da4499fdc7cee4.tar.xz samba-163603f4f4ce47fdf9f2308691da4499fdc7cee4.zip |
subunit: Support formatting compatible with upstream subunit, for consistency.
Upstream subunit makes a ":" after commands optional, so I've fixed any
places where we might trigger commands accidently. I've filed a bug
about this in subunit.
(Imported from commit 7da94cc4a664521be279b019e9f32121cd410193)
(This used to be ctdb commit f1242d9cba676d1d393375bea42613192c70662e)
Diffstat (limited to 'ctdb/lib')
-rw-r--r-- | ctdb/lib/tdb/tools/tdbtorture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/lib/tdb/tools/tdbtorture.c b/ctdb/lib/tdb/tools/tdbtorture.c index eda79f83d8..79fe3cd5e0 100644 --- a/ctdb/lib/tdb/tools/tdbtorture.c +++ b/ctdb/lib/tdb/tools/tdbtorture.c @@ -333,7 +333,7 @@ int main(int argc, char * const *argv) 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", + 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(i, seed, num_loops, 0)); |