pytest_perfmon.py 480 B

1234567891011121314151617
  1. # SPDX-FileCopyrightText: 2022 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.esp32s2
  7. @pytest.mark.esp32s3
  8. @pytest.mark.generic
  9. def test_perfmon(dut: Dut) -> None:
  10. dut.expect('example: Start')
  11. dut.expect('example: Start test with printing all available statistic')
  12. dut.expect('example: Start test with user defined statistic')
  13. dut.expect('example: The End')