fix(storage/fatfs): move test app to correct directory

pull/11534/merge
Tomáš Rohlínek 2024-05-29 14:12:43 +02:00 zatwierdzone przez Tomas Rohlinek
rodzic 331abf74ff
commit 84ba1a323c
23 zmienionych plików z 8 dodań i 9 usunięć

Wyświetl plik

@ -34,14 +34,6 @@ examples/storage/ext_flash_fatfs:
temporary: true
reason: lack of runners
examples/storage/fatfsgen:
depends_components:
- fatfs
- vfs
disable_test:
- if: IDF_TARGET != "esp32"
reason: only one target needed
examples/storage/nvs_rw_blob:
depends_components:
- nvs_flash

Wyświetl plik

@ -10,7 +10,6 @@ The examples are grouped into sub-directories by category. Each category directo
* `custom_flash_driver` example demonstrates how to implement your own flash chip driver by overriding the default driver.
* `emmc` example demonstrates how to use an eMMC chip with an ESP device.
* `ext_flash_fatfs` example demonstrates how to use FATFS partition with external SPI FLASH chip.
* `fatfsgen` example demonstrates how to use FATFS partition
* `nvs_rw_blob` example demonstrates how to read and write a single integer value and a blob (binary large object) using NVS to preserve them between ESP module restarts.
* `nvs_rw_value` example demonstrates how to read and write a single integer value using NVS.
* `nvs_rw_value_cxx` example demonstrates how to read and write a single integer value using NVS (it uses the C++ NVS handle API).

Wyświetl plik

@ -1,5 +1,13 @@
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
tools/test_apps/storage/fatfsgen:
depends_components:
- fatfs
- vfs
disable_test:
- if: IDF_TARGET != "esp32"
reason: only one target needed
tools/test_apps/storage/partition_table_readonly:
disable_test:
- if: IDF_TARGET not in ["esp32", "esp32c3"]