forked from espressif/esp-idf
fix(storage/fatfs): move test app to correct directory
This commit is contained in:
committed by
Tomas Rohlinek
parent
331abf74ff
commit
84ba1a323c
@@ -34,14 +34,6 @@ examples/storage/ext_flash_fatfs:
|
|||||||
temporary: true
|
temporary: true
|
||||||
reason: lack of runners
|
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:
|
examples/storage/nvs_rw_blob:
|
||||||
depends_components:
|
depends_components:
|
||||||
- nvs_flash
|
- nvs_flash
|
||||||
|
@@ -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.
|
* `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.
|
* `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.
|
* `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_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` 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).
|
* `nvs_rw_value_cxx` example demonstrates how to read and write a single integer value using NVS (it uses the C++ NVS handle API).
|
||||||
|
@@ -1,5 +1,13 @@
|
|||||||
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
# 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:
|
tools/test_apps/storage/partition_table_readonly:
|
||||||
disable_test:
|
disable_test:
|
||||||
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
||||||
|
Reference in New Issue
Block a user