mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
fix(storage/vfs): Fixed failing test cases in test_apps
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
components/nvs_flash/host_test:
|
||||
enable:
|
||||
- if: IDF_TARGET == "linux"
|
||||
|
||||
components/nvs_flash/test_apps:
|
||||
disable_test:
|
||||
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
||||
temporary: true
|
||||
reason: NVS flash test on one Xtensa and one RISCV target is enough
|
||||
|
5
components/vfs/.build-test-rules.yml
Normal file
5
components/vfs/.build-test-rules.yml
Normal file
@ -0,0 +1,5 @@
|
||||
components/vfs/test_apps:
|
||||
disable_test:
|
||||
- if: IDF_TARGET not in ["esp32", "esp32s3", "esp32c2", "esp32c3", "esp32c6", "esp32h2"]
|
||||
temporary: true
|
||||
reason: Only run VFS tests on a subset of targets
|
@ -1,6 +1,5 @@
|
||||
# SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
||||
# SPDX-FileCopyrightText: 2023-2025 Espressif Systems (Shanghai) CO LTD
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
import pytest
|
||||
from pytest_embedded import Dut
|
||||
|
||||
|
@ -7,3 +7,5 @@ CONFIG_PARTITION_TABLE_CUSTOM=y
|
||||
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
|
||||
|
||||
CONFIG_ESP_TASK_WDT_INIT=n
|
||||
|
||||
CONFIG_VFS_MAX_COUNT=10
|
||||
|
Reference in New Issue
Block a user