pytest_watchpoint.py 299 B

123456789101112
  1. # SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
  2. # SPDX-License-Identifier: CC0-1.0
  3. import pytest
  4. from pytest_embedded import Dut
  5. @pytest.mark.esp32
  6. @pytest.mark.esp32c3
  7. @pytest.mark.generic
  8. def test_watchpoint(dut: Dut) -> None:
  9. dut.expect_exact('stacks clean', timeout=3)