twai: migrate example test to pytest

This commit is contained in:
morris
2022-10-27 17:36:31 +08:00
parent b52e796654
commit 43d99f8364
26 changed files with 237 additions and 282 deletions

View File

@@ -0,0 +1,16 @@
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: CC0-1.0
from typing import Callable
import pytest
from pytest_embedded import Dut
@pytest.mark.supported_targets
@pytest.mark.generic
def test_generic_gpio_example(
dut: Dut, log_minimum_free_heap_size: Callable[..., None]
) -> None:
log_minimum_free_heap_size()
dut.expect(r'cnt: \d+')