Skip to content

Commit

Permalink
Improve labeling of pg_test_fsync open_sync test output.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmomjian committed Feb 14, 2012
1 parent 9a4880a commit 2bbd88f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contrib/pg_test_fsync/pg_test_fsync.c
Expand Up @@ -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);
}

/*
Expand Down

0 comments on commit 2bbd88f

Please sign in to comment.