tests: boards: rename espressif folder name

Current folder name is set to "espressif_esp32" and
might not reflect all kinds of SoCs as such as esp8684.
Rename the folder to "espressif" only.

Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
This commit is contained in:
Sylvio Alves 2024-09-20 10:30:04 -03:00 committed by Mahesh Mahadevan
parent e7bf414f15
commit 68479a8c8c
12 changed files with 5 additions and 5 deletions

View file

@ -3946,7 +3946,7 @@ Espressif Platforms:
- dts/riscv/espressif/
- dts/bindings/*/*esp32*
- samples/boards/espressif/
- tests/boards/espressif_esp32/
- tests/boards/espressif/
- drivers/*/*esp32*/
labels:
- "platform: ESP32"

View file

@ -25,7 +25,7 @@ Make sure you have the target connected over USB port.
.. code-block:: console
west build -b <board> tests/boards/espressif_esp32/cache_coex
west build -b <board> tests/boards/espressif/cache_coex
west flash && west espressif monitor
Sample Output

View file

@ -25,20 +25,20 @@ Make sure you have the target connected over USB port.
.. code-block:: console
west build -b <board> tests/boards/espressif_esp32/rtc_clk
west build -b <board> tests/boards/espressif/rtc_clk
west flash && west espressif monitor
To run the test with twister, use the following command:
.. code-block:: console
west twister -p <board> --device-testing --device-serial=/dev/ttyUSB0 -vv --flash-before -T tests/boards/espressif_esp32/rtc_clk
west twister -p <board> --device-testing --device-serial=/dev/ttyUSB0 -vv --flash-before -T tests/boards/espressif/rtc_clk
If the external 32K crystal is connect to pins 32K_XP and 32K_XN, the test can be run with ``external_xtal`` fixture enabled:
.. code-block:: console
west twister -p esp32c3_devkitm --device-testing --device-serial=/dev/ttyUSB0 -vv --flash-before -T tests/boards/espressif_esp32/rtc_clk -X external_xtal
west twister -p esp32c3_devkitm --device-testing --device-serial=/dev/ttyUSB0 -vv --flash-before -T tests/boards/espressif/rtc_clk -X external_xtal
Sample Output
=============