summaryrefslogtreecommitdiff
path: root/tests/vb2_host_nvdata_flashrom_tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/vb2_host_nvdata_flashrom_tests.c')
-rw-r--r--tests/vb2_host_nvdata_flashrom_tests.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/vb2_host_nvdata_flashrom_tests.c b/tests/vb2_host_nvdata_flashrom_tests.c
index 7a147856..33b435d9 100644
--- a/tests/vb2_host_nvdata_flashrom_tests.c
+++ b/tests/vb2_host_nvdata_flashrom_tests.c
@@ -147,12 +147,12 @@ static void test_read_ok_full(void)
reset_test_data(&ctx, sizeof(test_nvdata_16b));
- for (int entry = 0; entry < fake_flash_entry_count - 2; entry++)
+ for (int entry = 0; entry < fake_flash_entry_count - 1; entry++)
memcpy(fake_flash_region + (entry * VB2_NVDATA_SIZE),
test_nvdata_16b, sizeof(test_nvdata_16b));
memcpy(fake_flash_region +
- ((fake_flash_entry_count - 2) * VB2_NVDATA_SIZE),
+ ((fake_flash_entry_count - 1) * VB2_NVDATA_SIZE),
test_nvdata2_16b, sizeof(test_nvdata2_16b));
TEST_EQ(vb2_read_nv_storage_flashrom(&ctx), 0,
@@ -222,7 +222,7 @@ static void test_write_ok_full(void)
reset_test_data(&ctx, sizeof(test_nvdata_16b));
- for (int entry = 0; entry < fake_flash_entry_count - 1; entry++)
+ for (int entry = 0; entry < fake_flash_entry_count; entry++)
memcpy(fake_flash_region + (entry * VB2_NVDATA_SIZE),
test_nvdata_16b, sizeof(test_nvdata_16b));