From 819703c442dc964904a4aa79357ee0f4d38435b5 Mon Sep 17 00:00:00 2001 From: Aleksei Apaseev Date: Fri, 13 Dec 2024 11:22:53 +0800 Subject: [PATCH] ci: add app_path to log_minimum_free_heap_size to allow better identification of the app based on its path --- conftest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conftest.py b/conftest.py index af6d356a0e..d26b135c9b 100644 --- a/conftest.py +++ b/conftest.py @@ -362,11 +362,13 @@ def log_minimum_free_heap_size(dut: IdfDut, config: str) -> t.Callable[..., None res = dut.expect(r'Minimum free heap size: (\d+) bytes') logging.info( '\n------ heap size info ------\n' + '[app_path] {}\n' '[app_name] {}\n' '[config_name] {}\n' '[target] {}\n' '[minimum_free_heap_size] {} Bytes\n' '------ heap size end ------'.format( + dut.app.app_path, os.path.basename(dut.app.app_path), config, dut.target,