CopyBlocks test: decreased the test size.

It just needlessly ate up test time; there's no need for such rigorous testing once the test started succeeding.
master
madmaxoft 2014-09-01 21:31:27 +02:00
parent 6f18d01b51
commit d9f6c691cc
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ int main(int argc, char ** argv)
BLOCKTYPE * WritePosition = &TestBuffer[WritePosIdx];
memset(TestBuffer, 0x03, sizeof(TestBuffer));
size_t LastReportedStep = 1;
for (size_t idx = 0; idx < 5000; idx += 7)
for (size_t idx = 0; idx < 5000; idx += 73)
{
if (idx / 500 != LastReportedStep)
{
@ -53,7 +53,7 @@ int main(int argc, char ** argv)
LastReportedStep = idx / 500;
}
for (size_t len = 3; len < 1000; len += 13)
for (size_t len = 3; len < 700; len += 13)
{
Data.CopyBlockTypes(WritePosition, idx, len);