mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 19:24:33 +02:00
Merge branch 'fix/gdbstub_runtime_test_requiers_elf_file_v5.3' into 'release/v5.3'
fix(gdbstub_runtime): fix test gdbstub_runtime which requiers elf file (v5.3) See merge request espressif/esp-idf!33815
This commit is contained in:
@@ -271,8 +271,14 @@ class PytestCase:
|
||||
if 'jtag' in self.env_markers or 'usb_serial_jtag' in self.env_markers:
|
||||
return True
|
||||
|
||||
if any('panic' in Path(app.path).parts for app in self.apps):
|
||||
return True
|
||||
cases_need_elf = [
|
||||
'panic',
|
||||
'gdbstub_runtime'
|
||||
]
|
||||
|
||||
for case in cases_need_elf:
|
||||
if any(case in Path(app.path).parts for app in self.apps):
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
|
Reference in New Issue
Block a user