Test more possible alignments in the Write & Verify test. Some ata drivers apply optimisations up to line size alignment.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25787 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2010-05-02 19:38:23 +00:00
parent e891e90883
commit 9a74223f7d

View file

@ -134,9 +134,9 @@ static bool test_fs(void)
total = TEST_SIZE;
while (total > 0)
{
current = rb->rand() % (audiobuflen - 4);
align = rb->rand() & 0xf;
current = rb->rand() % (audiobuflen - align);
current = MIN(current, total);
align = rb->rand() & 3;
rb->snprintf(text_buf, sizeof text_buf, "Wrt %dKB, %dKB left",
current >> 10, total >> 10);
log_text(text_buf, false);
@ -163,9 +163,9 @@ static bool test_fs(void)
total = TEST_SIZE;
while (total > 0)
{
current = rb->rand() % (audiobuflen - 4);
align = rb->rand() & 0xf;
current = rb->rand() % (audiobuflen - align);
current = MIN(current, total);
align = rb->rand() & 3;
rb->snprintf(text_buf, sizeof text_buf, "Cmp %dKB, %dKB left",
current >> 10, total >> 10);
log_text(text_buf, false);