]> granicus.if.org Git - esp-idf/commitdiff
ci: Adjust the test_confserver timeout to 2 seconds
authorAngus Gratton <gus@projectgus.com>
Tue, 11 Jun 2019 00:15:42 +0000 (10:15 +1000)
committerAngus Gratton <gus@projectgus.com>
Tue, 11 Jun 2019 00:16:15 +0000 (10:16 +1000)
On a VM, it seems like 500ms is sometimes a very short time...

tools/kconfig_new/test/test_confserver.py

index d5da31913c31af9490a9da578f198a25f2c0dee2..20fce7e0310ba8084a7cf11ad12727facd888668 100755 (executable)
@@ -51,7 +51,7 @@ def main():
 
         cmdline = "../confserver.py --kconfig Kconfig --config %s" % temp_sdkconfig_path
         print("Running: %s" % cmdline)
-        p = pexpect.spawn(cmdline, timeout=0.5)
+        p = pexpect.spawn(cmdline, timeout=2)
         p.logfile = args.logfile
         p.setecho(False)