| 12345678910111213141516171819 |
- # SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
- # SPDX-License-Identifier: Unlicense OR CC0-1.0
- import pytest
- from pytest_embedded import Dut
- @pytest.mark.esp32
- @pytest.mark.external_flash
- def test_ext_flash_fatfs(dut: Dut) -> None:
- message_list = ('Initialized external Flash',
- 'partition \'nvs\'',
- 'partition \'storage\'',
- 'File written',
- 'Read from file: \'Written using ESP-IDF')
- for msg in message_list:
- dut.expect(msg, timeout=20)
|