| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- # SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
- # SPDX-License-Identifier: Apache-2.0
- import pytest
- from pytest_embedded import Dut
- @pytest.mark.esp32
- @pytest.mark.esp32s2
- @pytest.mark.esp32s3
- @pytest.mark.esp32c3
- @pytest.mark.esp32c2
- @pytest.mark.generic
- @pytest.mark.parametrize(
- 'config',
- [
- 'release',
- 'flash_qio',
- 'verify'
- ],
- indirect=True,
- )
- def test_esp_flash(dut: Dut) -> None:
- dut.expect_exact('Press ENTER to see the list of tests')
- dut.write('[esp_flash]')
- dut.expect_unity_test_output()
- @pytest.mark.esp32s3
- @pytest.mark.esp32c3
- @pytest.mark.esp32c2
- @pytest.mark.generic
- @pytest.mark.parametrize(
- 'config',
- [
- 'rom_impl',
- ],
- indirect=True,
- )
- def test_esp_flash_rom(dut: Dut) -> None:
- dut.expect_exact('Press ENTER to see the list of tests')
- dut.write('[esp_flash]')
- dut.expect_unity_test_output()
- @pytest.mark.esp32
- @pytest.mark.esp32s2
- @pytest.mark.esp32s3
- @pytest.mark.esp32c3
- @pytest.mark.esp32c2
- @pytest.mark.flash_multi
- @pytest.mark.parametrize(
- 'config',
- [
- 'release',
- ],
- indirect=True,
- )
- def test_esp_flash_multi(dut: Dut) -> None:
- dut.run_all_single_board_cases(group='esp_flash_multi', timeout=120)
|