subunit: Support formatting compatible with upstream subunit, for consistency.
authorJelmer Vernooij <jelmer@samba.org>
Thu, 22 Apr 2010 04:29:22 +0000 (13:59 +0930)
committerRusty Russell <rusty@rustcorp.com.au>
Thu, 22 Apr 2010 04:29:22 +0000 (13:59 +0930)
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)

lib/tdb/tools/tdbtorture.c

index eda79f83d8ee726f6f6f1405a8830d68ad5c84c1..79fe3cd5e0e9ba6dd9c95b882770b5f2fde37f43 100644 (file)
@@ -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));