ac3a84
From 5b859cca580ee9c050486024ebd8cfdb34049008 Mon Sep 17 00:00:00 2001
ac3a84
From: Frantisek Sumsal <frantisek@sumsal.cz>
ac3a84
Date: Mon, 23 Jan 2023 19:13:49 +0100
ac3a84
Subject: [PATCH] test: bump the container spawn timeout to 60s
ac3a84
ac3a84
As 30s might be not enough on busy systems (and we already bumped the
ac3a84
reboot timeout from 30s to 60s for this reason).
ac3a84
ac3a84
(cherry picked from commit d932022ddfe021b1c49ffaf4d7dfe4093656f0c5)
ac3a84
ac3a84
Related: #2138081
ac3a84
---
ac3a84
 test/test-shutdown.py | 2 +-
ac3a84
 1 file changed, 1 insertion(+), 1 deletion(-)
ac3a84
ac3a84
diff --git a/test/test-shutdown.py b/test/test-shutdown.py
ac3a84
index e181f976be..13e18ecbaa 100755
ac3a84
--- a/test/test-shutdown.py
ac3a84
+++ b/test/test-shutdown.py
ac3a84
@@ -17,7 +17,7 @@ def run(args):
ac3a84
     logger.info("spawning test")
ac3a84
     console = pexpect.spawn(args.command, args.arg, env={
ac3a84
             "TERM": "linux",
ac3a84
-        }, encoding='utf-8', timeout=30)
ac3a84
+        }, encoding='utf-8', timeout=60)
ac3a84
 
ac3a84
     if args.verbose:
ac3a84
         console.logfile = sys.stdout