Commit 832a9353 authored by Dan Melnic's avatar Dan Melnic Committed by Facebook GitHub Bot

Check result against kBlockSize

Summary: Check result against kBlockSize

Reviewed By: kevin-vigor

Differential Revision: D23501893

fbshipit-source-id: b6a43474422049c93f02e0b5defd300a471bccf5
parent 5758ff24
......@@ -125,6 +125,9 @@ void runTAsyncIOTest(
}
aio->wait(numEntries);
CHECK_EQ(completed, numEntries);
for (size_t i = 0; i < numEntries; i++) {
CHECK_EQ(bmData.ops[i]->result(), kBlockSize);
}
if (!persist) {
aio.reset();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment