summaryrefslogtreecommitdiff
path: root/testapp.c
diff options
context:
space:
mode:
authorKevin Lin <developer@kevinlin.info>2021-10-14 11:41:12 -0700
committerdormando <dormando@rydia.net>2021-11-23 16:02:26 -0800
commit32eab461f58ce5949baa7ffd47b0c6cefbbb1bd4 (patch)
treeac642be01883cd7c3ed969e5466c69cc88f68809 /testapp.c
parentcc0f24bca33d7e8a708b2d6405f39b5044b722ed (diff)
downloadmemcached-32eab461f58ce5949baa7ffd47b0c6cefbbb1bd4.tar.gz
Fix full unit test suite under test_tls
This allows `make test_tls` to reliably pass when running without parallelism.
Diffstat (limited to 'testapp.c')
-rw-r--r--testapp.c2
1 files changed, 1 insertions, 1 deletions
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);