Skip to content

Commit 2bbd88f

Browse files
committed
Improve labeling of pg_test_fsync open_sync test output.
1 parent 9a4880a commit 2bbd88f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

contrib/pg_test_fsync/pg_test_fsync.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -358,11 +358,11 @@ test_open_syncs(void)
358358
printf("(This is designed to compare the cost of writing 16kB\n");
359359
printf("in different write open_sync sizes.)\n");
360360

361-
test_open_sync("16kB open_sync write", 16);
362-
test_open_sync(" 8kB open_sync writes", 8);
363-
test_open_sync(" 4kB open_sync writes", 4);
364-
test_open_sync(" 2kB open_sync writes", 2);
365-
test_open_sync(" 1kB open_sync writes", 1);
361+
test_open_sync(" 1 * 16kB open_sync write", 16);
362+
test_open_sync(" 2 * 8kB open_sync writes", 8);
363+
test_open_sync(" 4 * 4kB open_sync writes", 4);
364+
test_open_sync(" 8 * 2kB open_sync writes", 2);
365+
test_open_sync("16 * 1kB open_sync writes", 1);
366366
}
367367

368368
/*

0 commit comments

Comments
 (0)