Merge branch 'feature/storage_host_test_nvs_flash2' into 'master'

nvs_flash: finished migration of host tests to the linux emulator of esp_partition

See merge request espressif/esp-idf!23926
This commit is contained in:
Martin Vychodil
2023-08-28 20:20:16 +08:00
10 changed files with 1600 additions and 1398 deletions
@@ -195,7 +195,8 @@ TEST(spiffs, format_disk_open_file_write_and_read_file)
// Generate data
spiffs_file file = spiffs_res;
uint32_t data_size = 100000;
uint32_t data_count = 5000;
uint32_t data_size = data_count * sizeof(uint32_t);
char *data = (char *) malloc(data_size);
char *read = (char *) malloc(data_size);