kopia lustrzana https://github.com/espressif/esp-idf
unit tests: change type of flash_test partition to ‘fat’
This change makes the spi_flash test partition usable for WL and FATFS tests.pull/302/merge
rodzic
d18157e108
commit
a428af8c9f
|
@ -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]")
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
|
Ładowanie…
Reference in New Issue