forked from espressif/esp-idf
feat(mbedtls): add new option CONFIG_MBEDTLS_USE_CRYPTO_ROM_IMPL for mbedtls pytest
This commit is contained in:
@@ -74,3 +74,16 @@ def test_mbedtls_psram_esp32(dut: Dut) -> None:
|
|||||||
@pytest.mark.parametrize('config', ['ecdsa_sign',], indirect=True)
|
@pytest.mark.parametrize('config', ['ecdsa_sign',], indirect=True)
|
||||||
def test_mbedtls_ecdsa_sign(dut: Dut) -> None:
|
def test_mbedtls_ecdsa_sign(dut: Dut) -> None:
|
||||||
dut.run_all_single_board_cases(group='efuse_key')
|
dut.run_all_single_board_cases(group='efuse_key')
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.esp32c2
|
||||||
|
@pytest.mark.generic
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
'config',
|
||||||
|
[
|
||||||
|
'rom_impl',
|
||||||
|
],
|
||||||
|
indirect=True,
|
||||||
|
)
|
||||||
|
def test_mbedtls_rom_impl_esp32c2(dut: Dut) -> None:
|
||||||
|
dut.run_all_single_board_cases()
|
||||||
|
3
components/mbedtls/test_apps/sdkconfig.ci.rom_impl
Normal file
3
components/mbedtls/test_apps/sdkconfig.ci.rom_impl
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
CONFIG_IDF_TARGET="esp32c2"
|
||||||
|
CONFIG_IDF_EXPERIMENTAL_FEATURES=y
|
||||||
|
CONFIG_MBEDTLS_USE_CRYPTO_ROM_IMPL=y
|
Reference in New Issue
Block a user