2023-02-14 23:29:34 -05:00
|
|
|
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
from pytest_embedded import Dut
|
|
|
|
|
|
|
|
|
|
|
|
# normal mmu tests
|
|
|
|
@pytest.mark.supported_targets
|
|
|
|
@pytest.mark.generic
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'config',
|
|
|
|
[
|
|
|
|
'release',
|
|
|
|
],
|
|
|
|
indirect=True,
|
|
|
|
)
|
|
|
|
def test_mmap(dut: Dut) -> None:
|
|
|
|
dut.run_all_single_board_cases(group='mmu')
|
|
|
|
|
|
|
|
|
|
|
|
# mmu tests with psram enabled
|
2023-04-25 02:40:53 -04:00
|
|
|
PSRAM_RELEASE_CONFIGS = [
|
|
|
|
pytest.param('psram_release_esp32', marks=[pytest.mark.esp32]),
|
|
|
|
pytest.param('psram_release_esp32s2', marks=[pytest.mark.esp32s2]),
|
|
|
|
pytest.param('psram_release_esp32s3', marks=[pytest.mark.esp32s3]),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2023-02-14 23:29:34 -05:00
|
|
|
@pytest.mark.generic
|
2023-04-25 02:40:53 -04:00
|
|
|
@pytest.mark.parametrize('config', PSRAM_RELEASE_CONFIGS, indirect=True)
|
2023-02-14 23:29:34 -05:00
|
|
|
def test_mmap_psram(dut: Dut) -> None:
|
|
|
|
dut.run_all_single_board_cases(group='mmu')
|
|
|
|
|
|
|
|
|
|
|
|
# mmu tests with xip_psram
|
2023-04-25 02:40:53 -04:00
|
|
|
XIP_CONFIGS = [
|
|
|
|
pytest.param('xip_psram_esp32s2', marks=[pytest.mark.esp32s2]),
|
|
|
|
pytest.param('xip_psram_esp32s3', marks=[pytest.mark.esp32s3]),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2023-02-14 23:29:34 -05:00
|
|
|
@pytest.mark.generic
|
2023-04-25 02:40:53 -04:00
|
|
|
@pytest.mark.parametrize('config', XIP_CONFIGS, indirect=True)
|
2023-02-14 23:29:34 -05:00
|
|
|
def test_mmap_xip_psram(dut: Dut) -> None:
|
|
|
|
dut.run_all_single_board_cases(group='mmu')
|
|
|
|
|
|
|
|
|
|
|
|
# normal cache tests
|
|
|
|
@pytest.mark.supported_targets
|
|
|
|
@pytest.mark.generic
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'config',
|
|
|
|
[
|
|
|
|
'release',
|
|
|
|
],
|
|
|
|
indirect=True,
|
|
|
|
)
|
|
|
|
def test_cache(dut: Dut) -> None:
|
|
|
|
dut.run_all_single_board_cases(group='cache')
|
|
|
|
|
|
|
|
|
|
|
|
# cache tests with psram enabled
|
|
|
|
@pytest.mark.generic
|
2023-04-25 02:40:53 -04:00
|
|
|
@pytest.mark.parametrize('config', PSRAM_RELEASE_CONFIGS, indirect=True)
|
2023-02-14 23:29:34 -05:00
|
|
|
def test_cache_psram(dut: Dut) -> None:
|
|
|
|
dut.run_all_single_board_cases(group='cache')
|
|
|
|
|
|
|
|
|
|
|
|
# cache tests with xip_psram
|
|
|
|
@pytest.mark.generic
|
2023-04-25 02:40:53 -04:00
|
|
|
@pytest.mark.parametrize('config', XIP_CONFIGS, indirect=True)
|
2023-02-14 23:29:34 -05:00
|
|
|
def test_cache_xip_psram(dut: Dut) -> None:
|
|
|
|
dut.run_all_single_board_cases(group='cache')
|