Files
esp-idf/components/hal/test_apps/hal_utils/pytest_hal_utils.py

13 lines
354 B
Python
Raw Normal View History

2024-05-06 11:12:04 +08:00
# SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Apache-2.0
import pytest
from pytest_embedded import Dut
@pytest.mark.linux
@pytest.mark.host_test
def test_hal_utils(dut: Dut) -> None:
2023-10-09 22:47:25 +08:00
dut.expect_exact('Press ENTER to see the list of tests.')
dut.write('*')
dut.expect_unity_test_output()