2022-05-24 17:26:36 +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.generic
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
|
'config',
|
|
|
|
|
[
|
|
|
|
|
'iram_safe',
|
|
|
|
|
'release',
|
|
|
|
|
],
|
|
|
|
|
indirect=True,
|
|
|
|
|
)
|
|
|
|
|
def test_dac(dut: Dut) -> None:
|
2023-03-09 12:15:06 +08:00
|
|
|
dut.run_all_single_board_cases()
|