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