mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
1590fbd31c
Enabled additional tests for C2, added config for testing with newlib nano as well as cleaned up old configs
23 lines
736 B
Python
23 lines
736 B
Python
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
import pytest
|
|
from pytest_embedded import Dut
|
|
|
|
|
|
@pytest.mark.generic
|
|
@pytest.mark.parametrize(
|
|
'config',
|
|
[
|
|
pytest.param('default', marks=[pytest.mark.supported_targets]),
|
|
pytest.param('options', marks=[pytest.mark.supported_targets]),
|
|
pytest.param('single_core_esp32', marks=[pytest.mark.esp32]),
|
|
pytest.param('psram_esp32', marks=[pytest.mark.esp32]),
|
|
pytest.param('release_esp32', marks=[pytest.mark.esp32]),
|
|
pytest.param('release_esp32c2', marks=[pytest.mark.esp32c2]),
|
|
],
|
|
indirect=True
|
|
)
|
|
def test_newlib(dut: Dut) -> None:
|
|
dut.run_all_single_board_cases()
|