diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2023-01-23 19:13:49 +0100 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2023-01-23 19:13:49 +0100 |
commit | d932022ddfe021b1c49ffaf4d7dfe4093656f0c5 (patch) | |
tree | b7b3dd9355757dd8e1bb9a0a54275e3989d62562 /test/test-shutdown.py | |
parent | test: bump the client-side timeout in sd-bus as well (diff) | |
download | systemd-d932022ddfe021b1c49ffaf4d7dfe4093656f0c5.tar.xz systemd-d932022ddfe021b1c49ffaf4d7dfe4093656f0c5.zip |
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).
Diffstat (limited to '')
-rwxr-xr-x | test/test-shutdown.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-shutdown.py b/test/test-shutdown.py index ae2c0ad628..700e77a15d 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 |