]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
test: bump the container spawn timeout to 60s 26164/head
authorFrantisek Sumsal <frantisek@sumsal.cz>
Mon, 23 Jan 2023 18:13:49 +0000 (19:13 +0100)
committerFrantisek Sumsal <frantisek@sumsal.cz>
Mon, 23 Jan 2023 18:13:49 +0000 (19:13 +0100)
As 30s might be not enough on busy systems (and we already bumped the
reboot timeout from 30s to 60s for this reason).

test/test-shutdown.py

index ae2c0ad6282a76d20341294e689da41b70c9522f..700e77a15db34b8235dec2fe0832817a4c9a730d 100755 (executable)
@@ -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