2022-01-19 12:12:15 +08:00
|
|
|
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
from pytest_embedded import Dut
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.supported_targets
|
2022-11-22 17:01:25 +08:00
|
|
|
@pytest.mark.temp_skip_ci(targets=['esp32c6'], reason='c6 support TBD')
|
2022-01-19 12:12:15 +08:00
|
|
|
@pytest.mark.generic
|
|
|
|
|
def test_newlib(dut: Dut) -> None:
|
|
|
|
|
dut.expect_unity_test_output()
|