Merge branch 'bugfix/ci_confserver_timeout_again' into 'master'

ci: Adjust spawn settings in test_confserver

See merge request idf/esp-idf!5225
pull/7874/head
Anton Maklakov 2019-06-19 22:56:45 +08:00
commit 58986992e8
1 zmienionych plików z 1 dodań i 3 usunięć

Wyświetl plik

@ -51,9 +51,7 @@ def main():
cmdline = "../confserver.py --kconfig Kconfig --config %s" % temp_sdkconfig_path
print("Running: %s" % cmdline)
p = pexpect.spawn(cmdline, timeout=2)
p.logfile = args.logfile
p.setecho(False)
p = pexpect.spawn(cmdline, timeout=30, logfile=args.logfile, echo=False, use_poll=True, maxread=1)
p.expect("Server running.+\r\n")
initial = expect_json(p)