2022-01-17 14:42:09 +08: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
|
2022-10-27 18:55:07 +08:00
|
|
|
@pytest.mark.esp32c6
|
2023-01-17 15:21:26 +08:00
|
|
|
@pytest.mark.esp32h2
|
2022-01-17 14:42:09 +08:00
|
|
|
@pytest.mark.generic
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'config',
|
|
|
|
[
|
|
|
|
'iram_safe',
|
|
|
|
'release',
|
|
|
|
],
|
|
|
|
indirect=True,
|
|
|
|
)
|
2022-04-07 13:08:47 +08:00
|
|
|
def test_pulse_cnt(dut: Dut) -> None:
|
2023-03-09 12:15:06 +08:00
|
|
|
dut.run_all_single_board_cases()
|