ci(mbedtls): Enable PSRAM-related tests for ESP32-P4 and ESP32-C5

This commit is contained in:
harshal.patil
2024-08-30 16:27:56 +05:30
parent d0be11adfc
commit 945ad6ea5d
3 changed files with 21 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
# SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: CC0-1.0
import pytest
from pytest_embedded import Dut
@@ -42,11 +42,13 @@ def test_mbedtls_aes_no_hw(dut: Dut) -> None:
@pytest.mark.esp32
@pytest.mark.esp32s2
@pytest.mark.esp32s3
@pytest.mark.esp32c5
@pytest.mark.generic
@pytest.mark.parametrize(
'config',
[
'psram',
'psram_all_ext',
],
indirect=True,
)
@@ -54,16 +56,17 @@ def test_mbedtls_psram(dut: Dut) -> None:
dut.run_all_single_board_cases()
@pytest.mark.esp32
@pytest.mark.esp32p4
@pytest.mark.generic
@pytest.mark.parametrize(
'config',
[
'psram_all_ext',
'psram_esp32p4_200m',
'psram_all_ext_esp32p4_200m'
],
indirect=True,
)
def test_mbedtls_psram_esp32(dut: Dut) -> None:
def test_mbedtls_psram_esp32p4(dut: Dut) -> None:
dut.run_all_single_board_cases()