From 12d5c136f2229efd691510044798f01dcca8edea Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Wed, 15 Jan 2020 15:36:14 +0100 Subject: [PATCH] tests: Give server more time to start Signed-off-by: Jakub Jelen Reviewed-by: Andreas Schneider --- tests/torture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/torture.c b/tests/torture.c index 4783d9cf..62cbfaf1 100644 --- a/tests/torture.c +++ b/tests/torture.c @@ -928,7 +928,7 @@ torture_reload_sshd_server(void **state) } /* Wait until the sshd is ready to accept connections */ - rc = torture_wait_for_daemon(5); + rc = torture_wait_for_daemon(10); assert_int_equal(rc, 0); return SSH_OK; }