mirror of
https://github.com/espressif/esp-idf
synced 2025-03-09 17:19:09 -04:00
23 lines
731 B
Python
23 lines
731 B
Python
# SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
import pytest
|
|
from pytest_embedded import Dut
|
|
from pytest_embedded_idf.utils import idf_parametrize
|
|
|
|
|
|
@pytest.mark.generic
|
|
@idf_parametrize('target', ['esp32'], indirect=['target'])
|
|
def test_himem(dut: Dut) -> None:
|
|
mem = (
|
|
dut.expect(
|
|
r'esp_himem: Initialized. Using last \d+ 32KB address blocks for bank '
|
|
r'switching on (\d+) KB of physical memory.'
|
|
)
|
|
.group(1)
|
|
.decode('utf8')
|
|
)
|
|
|
|
dut.expect(r'Himem has {}KiB of memory, \d+KiB of which is free.'.format(mem), timeout=10)
|
|
dut.expect_exact('Testing the free memory...')
|
|
dut.expect_exact('Done!')
|