File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 22
33examples/system/app_trace_basic :
44 disable_test :
5- - if : IDF_TARGET in [ "esp32p4", "esp32h21"]
5+ - if : IDF_TARGET == "esp32p4"
66 temporary : true
77 reason : lack of runners.
8+ - if : IDF_TARGET == "esp32h21"
9+ temporary : true
10+ reason : not supported yet # TODO: OCD-1081
11+ - if : IDF_TARGET == "esp32h4"
12+ temporary : true
13+ reason : not supported yet # TODO: OCD-1137
814
915examples/system/base_mac_address :
1016 depends_components :
Original file line number Diff line number Diff line change @@ -131,8 +131,8 @@ def _test_examples_app_trace_basic(dut: IdfDut) -> None:
131131 with open (openocd .log_file , encoding = 'utf-8' ) as oocd_log : # pylint: disable=protected-access
132132 cores = 1 if dut .app .sdkconfig .get ('ESP_SYSTEM_SINGLE_CORE_MODE' ) is True else 2
133133 search_strings .append ('App trace params: from {} cores,' .format (cores ))
134- found = False
135134 for search_str in search_strings :
135+ found = False
136136 oocd_log .seek (0 )
137137 for line in oocd_log :
138138 if search_str in line :
You can’t perform that action at this time.
0 commit comments