summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorFrantisek Sumsal <frantisek@sumsal.cz>2023-01-23 19:13:49 +0100
committerFrantisek Sumsal <frantisek@sumsal.cz>2023-01-23 19:13:49 +0100
commitd932022ddfe021b1c49ffaf4d7dfe4093656f0c5 (patch)
treeb7b3dd9355757dd8e1bb9a0a54275e3989d62562 /test
parente0cbb739113b9e2fbb67b27099430c351f03315c (diff)
downloadsystemd-d932022ddfe021b1c49ffaf4d7dfe4093656f0c5.tar.gz
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 'test')
-rwxr-xr-xtest/test-shutdown.py2
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