mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
30abe85a25
Two changes to make the tests less susceptible to random failures: - Free up newlib memory to not have false-positive memory leaks due to lazy allocations in reent structure - Reset between tests, so that one failing test doesn't cause subsequent tests to fail Both changes are already applied to esp_driver_sdmmc test app.
8 lines
232 B
Python
8 lines
232 B
Python
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
from pytest_embedded_idf import IdfDut
|
|
|
|
|
|
def test_sdspi(dut: IdfDut) -> None:
|
|
dut.run_all_single_board_cases(reset=True)
|