mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-05 13:44:32 +02:00
ci: add app_path to log_minimum_free_heap_size to allow better identification of the app based on its path
This commit is contained in:
@@ -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')
|
res = dut.expect(r'Minimum free heap size: (\d+) bytes')
|
||||||
logging.info(
|
logging.info(
|
||||||
'\n------ heap size info ------\n'
|
'\n------ heap size info ------\n'
|
||||||
|
'[app_path] {}\n'
|
||||||
'[app_name] {}\n'
|
'[app_name] {}\n'
|
||||||
'[config_name] {}\n'
|
'[config_name] {}\n'
|
||||||
'[target] {}\n'
|
'[target] {}\n'
|
||||||
'[minimum_free_heap_size] {} Bytes\n'
|
'[minimum_free_heap_size] {} Bytes\n'
|
||||||
'------ heap size end ------'.format(
|
'------ heap size end ------'.format(
|
||||||
|
dut.app.app_path,
|
||||||
os.path.basename(dut.app.app_path),
|
os.path.basename(dut.app.app_path),
|
||||||
config,
|
config,
|
||||||
dut.target,
|
dut.target,
|
||||||
|
Reference in New Issue
Block a user