ci(flash_enc): Extend flash encryption and mbedtls test case to test PSRAM encryption

This commit is contained in:
harshal.patil
2025-08-04 14:49:08 +05:30
parent 5df7a0a8c9
commit 16873520fd
9 changed files with 117 additions and 3 deletions

View File

@@ -51,6 +51,19 @@ def test_mbedtls_psram(dut: Dut) -> None:
dut.run_all_single_board_cases()
@pytest.mark.flash_encryption_psram
@pytest.mark.parametrize(
'config',
[
'psram_all_ext_flash_enc',
],
indirect=True,
)
@idf_parametrize('target', ['esp32'], indirect=['target'])
def test_mbedtls_psram_all_ext_flash_enc(dut: Dut) -> None:
dut.run_all_single_board_cases()
@pytest.mark.generic
@pytest.mark.parametrize(
'config',
@@ -62,6 +75,19 @@ def test_mbedtls_psram_esp32p4(dut: Dut) -> None:
dut.run_all_single_board_cases()
@pytest.mark.flash_encryption
@pytest.mark.parametrize(
'config',
[
'psram_all_ext_flash_enc_esp32p4_200m',
],
indirect=True,
)
@idf_parametrize('target', ['esp32p4'], indirect=['target'])
def test_mbedtls_psram_all_ext_flash_enc_esp32p4_200m(dut: Dut) -> None:
dut.run_all_single_board_cases()
@pytest.mark.ecdsa_efuse
@pytest.mark.parametrize(
'config',