Skip to content

Commit 49c8d07

Browse files
committed
Merge branch 'bugfix/ci_coredump_timeout' into 'master'
CI: Fix timeout in the espcoredump test Closes IDFCI-63 See merge request espressif/esp-idf!9531
2 parents 5da526a + ee5e3f8 commit 49c8d07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/espcoredump/espcoredump.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1250,7 +1250,7 @@ def gdbmi_start(gdb_path, gdb_cmds, core_filename, prog_filename): # type: (str
12501250
gdb_args.append(prog_filename)
12511251
res = GdbController(gdb_path=gdb_path, gdb_args=gdb_args)
12521252
# Consume initial output by issuing a dummy command
1253-
res.write("-data-list-register-values x pc")
1253+
res.write("-data-list-register-values x pc", timeout_sec=5)
12541254
return res
12551255

12561256

0 commit comments

Comments
 (0)