From 32eab461f58ce5949baa7ffd47b0c6cefbbb1bd4 Mon Sep 17 00:00:00 2001 From: Kevin Lin Date: Thu, 14 Oct 2021 11:41:12 -0700 Subject: Fix full unit test suite under test_tls This allows `make test_tls` to reliably pass when running without parallelism. --- testapp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testapp.c') diff --git a/testapp.c b/testapp.c index 2af409b..d4a8602 100644 --- a/testapp.c +++ b/testapp.c @@ -621,7 +621,7 @@ static pid_t start_server(in_port_t *port_out, bool daemon, int timeout) { static enum test_return test_issue_44(void) { in_port_t port; - pid_t pid = start_server(&port, true, 15); + pid_t pid = start_server(&port, true, 600); assert(kill(pid, SIGHUP) == 0); sleep(1); assert(kill(pid, SIGTERM) == 0); -- cgit v1.2.1