2023-01-09 01:39:24 -05:00
|
|
|
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
2022-04-07 03:32:46 -04:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
from pytest_embedded import Dut
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.esp32
|
|
|
|
@pytest.mark.esp32s2
|
|
|
|
@pytest.mark.esp32c3
|
2022-11-14 03:28:00 -05:00
|
|
|
@pytest.mark.esp32c6
|
2022-04-07 03:32:46 -04:00
|
|
|
@pytest.mark.esp32s3
|
2023-02-22 06:44:15 -05:00
|
|
|
@pytest.mark.esp32h2
|
2022-04-07 03:32:46 -04:00
|
|
|
@pytest.mark.generic
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'config',
|
|
|
|
[
|
|
|
|
'iram_safe',
|
|
|
|
'release',
|
|
|
|
],
|
|
|
|
indirect=True,
|
|
|
|
)
|
|
|
|
def test_i2s(dut: Dut) -> None:
|
2023-03-08 23:15:06 -05:00
|
|
|
dut.run_all_single_board_cases()
|