From ee5e3f8b934bc28691cde9bb48733745296a91b4 Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Wed, 8 Jul 2020 11:03:35 +0200 Subject: [PATCH] CI: Fix timeout in the espcoredump test --- components/espcoredump/espcoredump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/espcoredump/espcoredump.py b/components/espcoredump/espcoredump.py index 2f9fae5f3..5e07eaf5b 100755 --- a/components/espcoredump/espcoredump.py +++ b/components/espcoredump/espcoredump.py @@ -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