From: Frantisek Sumsal Date: Mon, 23 Jan 2023 18:13:49 +0000 (+0100) Subject: test: bump the container spawn timeout to 60s X-Git-Tag: v253-rc1~20^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d932022ddfe021b1c49ffaf4d7dfe4093656f0c5;p=thirdparty%2Fsystemd.git test: bump the container spawn timeout to 60s As 30s might be not enough on busy systems (and we already bumped the reboot timeout from 30s to 60s for this reason). --- diff --git a/test/test-shutdown.py b/test/test-shutdown.py index ae2c0ad6282..700e77a15db 100755 --- a/test/test-shutdown.py +++ b/test/test-shutdown.py @@ -18,7 +18,7 @@ def run(args): logger.info("spawning test") console = pexpect.spawn(args.command, args.arg, env={ "TERM": "linux", - }, encoding='utf-8', timeout=30) + }, encoding='utf-8', timeout=60) if args.verbose: console.logfile = sys.stdout