Merge branch 'feature/update-openocd-to-v0.12.0-esp32-20230921' into 'master'

Feature/update openocd to v0.12.0 esp32 20230921

Closes IDF-7920

See merge request espressif/esp-idf!26316
This commit is contained in:
Erhan Kurubas
2023-10-17 16:09:39 +08:00
3 changed files with 29 additions and 28 deletions

View File

@@ -48,7 +48,7 @@ def test_gcov(dut: IdfDut, openocd: OpenOcd) -> None:
for expect in expect_lines[:]:
if expect in line:
if expect.endswith('.gcda'): # check file exists
file_path = line.split()[-1].strip("'")
file_path = line.split()[3].strip("'")
assert os.path.isfile(file_path)
expect_lines.remove(expect)