In test_open_sync(), writes kilobytes as intended, not by bytes.

This commit is contained in:
Bruce Momjian 2011-01-24 19:42:32 -05:00
parent 77ff840835
commit 9fc0192283

View File

@ -421,7 +421,8 @@ test_open_sync(const char *msg, int writes_size)
for (ops = 0; ops < ops_per_test; ops++)
{
for (writes = 0; writes < 16 / writes_size; writes++)
if (write(tmpfile, buf, writes_size) != writes_size)
if (write(tmpfile, buf, writes_size * 1024) !=
writes_size * 1024)
die("write failed");
if (lseek(tmpfile, 0, SEEK_SET) == -1)
die("seek failed");