diff options
author | Bruce Momjian <bruce@momjian.us> | 2012-02-13 21:48:33 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2012-02-13 21:48:51 -0500 |
commit | 2bbd88f8f841b01efb073972b60d4dc1ff1f6fd0 (patch) | |
tree | 3c43f6d6f0749603df6e3cb5888b6f90bf8bfaaf | |
parent | 9a4880a0dd3cc94770aae2d372302642990c9fc1 (diff) | |
download | postgresql-2bbd88f8f841b01efb073972b60d4dc1ff1f6fd0.tar.gz postgresql-2bbd88f8f841b01efb073972b60d4dc1ff1f6fd0.zip |
Improve labeling of pg_test_fsync open_sync test output.
-rw-r--r-- | contrib/pg_test_fsync/pg_test_fsync.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/pg_test_fsync/pg_test_fsync.c b/contrib/pg_test_fsync/pg_test_fsync.c index 042b02bfae1..3fcb087f2a2 100644 --- a/contrib/pg_test_fsync/pg_test_fsync.c +++ b/contrib/pg_test_fsync/pg_test_fsync.c @@ -358,11 +358,11 @@ test_open_syncs(void) printf("(This is designed to compare the cost of writing 16kB\n"); printf("in different write open_sync sizes.)\n"); - test_open_sync("16kB open_sync write", 16); - test_open_sync(" 8kB open_sync writes", 8); - test_open_sync(" 4kB open_sync writes", 4); - test_open_sync(" 2kB open_sync writes", 2); - test_open_sync(" 1kB open_sync writes", 1); + test_open_sync(" 1 * 16kB open_sync write", 16); + test_open_sync(" 2 * 8kB open_sync writes", 8); + test_open_sync(" 4 * 4kB open_sync writes", 4); + test_open_sync(" 8 * 2kB open_sync writes", 2); + test_open_sync("16 * 1kB open_sync writes", 1); } /* |