2023-08-29 12:25:05 +08:00
|
|
|
# SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD
|
2022-11-10 17:37:26 +08:00
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.supported_targets
|
|
|
|
|
@pytest.mark.generic
|
2023-08-29 12:25:05 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
|
'config',
|
|
|
|
|
[
|
|
|
|
|
'iram_safe',
|
|
|
|
|
'release',
|
|
|
|
|
],
|
|
|
|
|
indirect=True,
|
|
|
|
|
)
|
2022-11-10 17:37:26 +08:00
|
|
|
def test_uart_single_dev(case_tester) -> None: # type: ignore
|
|
|
|
|
case_tester.run_all_normal_cases(reset=True)
|