unit tests: change type of flash_test partition to ‘fat’

This change makes the spi_flash test partition usable for WL and FATFS
tests.
This commit is contained in:
Ivan Grokhotkov 2017-05-04 16:42:22 +08:00
parent d18157e108
commit a428af8c9f
3 changed files with 8 additions and 6 deletions

View file

@ -27,7 +27,7 @@ TEST_CASE("Can read partition table", "[partition]")
++count;
}
esp_partition_iterator_release(it);
TEST_ASSERT_EQUAL(3, count);
TEST_ASSERT_EQUAL(4, count);
}
TEST_CASE("Can write, read, mmap partition", "[partition][ignore]")

View file

@ -17,9 +17,9 @@
const esp_partition_t *get_test_data_partition()
{
/* This user type/subtype (0x55) is set in
partition_table_unit_test_app.csv */
const esp_partition_t *result = esp_partition_find_first(0x55, 0x55, NULL);
/* This finds "flash_test" partition defined in partition_table_unit_test_app.csv */
const esp_partition_t *result = esp_partition_find_first(ESP_PARTITION_TYPE_DATA,
ESP_PARTITION_SUBTYPE_ANY, "flash_test");
TEST_ASSERT_NOT_NULL(result); /* means partition table set wrong */
return result;
}

View file

@ -10,5 +10,7 @@ factory, 0, 0, 0x10000, 1M
# (done this way so tests can run in 2MB of flash.)
ota_0, 0, ota_0, , 128K
ota_1, 0, ota_1, , 128K
# flash_test partition used for SPI flash tests
flash_test, 0x55, 0x55, , 512K
# flash_test partition used for SPI flash tests and WL FAT partition
# 528K is the minimal size needed to create a FAT partition
# (128 sectors for FAT + 4 sectors for WL)
flash_test, data, fat, , 528K

1 # Special partition table for unit test app
10 # (done this way so tests can run in 2MB of flash.)
11 ota_0, 0, ota_0, , 128K
12 ota_1, 0, ota_1, , 128K
13 # flash_test partition used for SPI flash tests # flash_test partition used for SPI flash tests and WL FAT partition
14 flash_test, 0x55, 0x55, , 512K # 528K is the minimal size needed to create a FAT partition
15 # (128 sectors for FAT + 4 sectors for WL)
16 flash_test, data, fat, , 528K