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
This commit is contained in:
Angus Gratton 2020-07-09 12:04:27 +08:00
commit 49c8d076cd

View file

@ -1250,7 +1250,7 @@ def gdbmi_start(gdb_path, gdb_cmds, core_filename, prog_filename): # type: (str
gdb_args.append(prog_filename)
res = GdbController(gdb_path=gdb_path, gdb_args=gdb_args)
# Consume initial output by issuing a dummy command
res.write("-data-list-register-values x pc")
res.write("-data-list-register-values x pc", timeout_sec=5)
return res