2022-04-06 23:59:46 -04:00
|
|
|
# SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
from pytest_embedded import Dut
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.esp32
|
|
|
|
@pytest.mark.esp32s2
|
|
|
|
@pytest.mark.esp32s3
|
|
|
|
@pytest.mark.esp32c3
|
2022-12-14 06:00:58 -05:00
|
|
|
@pytest.mark.esp32c6
|
2023-02-15 01:44:58 -05:00
|
|
|
@pytest.mark.esp32h2
|
2022-04-06 23:59:46 -04:00
|
|
|
@pytest.mark.generic
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'config',
|
|
|
|
[
|
|
|
|
'iram_safe',
|
|
|
|
'release',
|
|
|
|
],
|
|
|
|
indirect=True,
|
|
|
|
)
|
|
|
|
def test_rmt(dut: Dut) -> None:
|
2023-03-27 05:42:23 -04:00
|
|
|
dut.run_all_single_board_cases()
|