Skip to content

Commit ee5e3f8

Browse files
committed
CI: Fix timeout in the espcoredump test
1 parent 5da526a commit ee5e3f8

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)