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