pytest_linux_freertos.py 401 B

12345678910111213
  1. # SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
  2. # SPDX-License-Identifier: Apache-2.0
  3. import pytest
  4. from pytest_embedded import Dut
  5. @pytest.mark.linux
  6. @pytest.mark.host_test
  7. def test_linux_freertos_SMP(dut: Dut) -> None:
  8. dut.expect_exact('Press ENTER to see the list of tests.')
  9. dut.write('![ignore]')
  10. dut.expect('[0-9][0-9] Tests 0 Failures 0 Ignored', timeout=120)