mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
50 lines
1.4 KiB
Python
50 lines
1.4 KiB
Python
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
import pytest
|
|
from pytest_embedded.dut import Dut
|
|
|
|
|
|
@pytest.mark.esp32s2
|
|
@pytest.mark.esp32s3
|
|
@pytest.mark.generic
|
|
# in order to build the default sdkconfig(the CI won't build the sdkconfig.defaults if there is a sdkconfig.ci.xx)
|
|
@pytest.mark.parametrize(
|
|
'config',
|
|
[
|
|
'generic',
|
|
],
|
|
indirect=True,
|
|
)
|
|
def test_xip_from_psram_example_generic(dut: Dut) -> None:
|
|
dut.expect_exact('found partition')
|
|
|
|
res = dut.expect(r'callback\(in PSRAM\) response time: (\d{1,3}) us')
|
|
response_time = res.group(1).decode('utf8')
|
|
assert float(response_time) <= 12
|
|
|
|
res = dut.expect(r'callback\(in IRAM\) response time: (\d{1,3}) us')
|
|
response_time = res.group(1).decode('utf8')
|
|
assert float(response_time) <= 12
|
|
|
|
|
|
@pytest.mark.esp32s3
|
|
@pytest.mark.MSPI_F4R8
|
|
@pytest.mark.parametrize(
|
|
'config',
|
|
[
|
|
'esp32s3_f4r8',
|
|
],
|
|
indirect=True,
|
|
)
|
|
def test_xip_from_psram_example_f4r8(dut: Dut) -> None:
|
|
dut.expect_exact('found partition')
|
|
|
|
res = dut.expect(r'callback\(in PSRAM\) response time: (\d{1,3}) us')
|
|
response_time = res.group(1).decode('utf8')
|
|
assert float(response_time) <= 12
|
|
|
|
res = dut.expect(r'callback\(in IRAM\) response time: (\d{1,3}) us')
|
|
response_time = res.group(1).decode('utf8')
|
|
assert float(response_time) <= 12
|