summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2014-10-26 17:48:33 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2014-10-26 17:48:33 +0000
commitd528a3894061e5a6b77b25cb16355cca8f1714dd (patch)
treeed5cee0979361569adcaf6c3c7bc8191f8123be7
parent9ff403f8e6b47bf94896eea173780375f49689ff (diff)
Testsuite: increase default "client" utility connect timeout from 1 to 5 seconds
-rw-r--r--test/scripts/0000-Basic/00356
-rw-r--r--test/src/client.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/test/scripts/0000-Basic/0035 b/test/scripts/0000-Basic/0035
index d0805bdee..147c8e7e2 100644
--- a/test/scripts/0000-Basic/0035
+++ b/test/scripts/0000-Basic/0035
@@ -3,7 +3,7 @@ need_ipv4
#
exim -DSERVER=server -bd -oX PORT_D
****
-client -t5 127.0.0.1 PORT_D
+client 127.0.0.1 PORT_D
??? 220
ehlo rhu.barb
??? 250-
@@ -61,7 +61,7 @@ killdaemon
millisleep 500
exim -DSERVER=server -DSUBMISSION_OPTIONS=/domain=a.b.c/sender_retain -bd -oX PORT_D
****
-client -t5 127.0.0.1 PORT_D
+client 127.0.0.1 PORT_D
??? 220
ehlo rhu.barb
??? 250-
@@ -86,7 +86,7 @@ killdaemon
millisleep 500
exim -DSERVER=server -DSUBMISSION_OPTIONS=/domain=a.b.c/name=SomeName -bd -oX PORT_D
****
-client -t5 127.0.0.1 PORT_D
+client 127.0.0.1 PORT_D
??? 220
ehlo rhu.barb
??? 250-
diff --git a/test/src/client.c b/test/src/client.c
index 4efe43fc3..614c2c557 100644
--- a/test/src/client.c
+++ b/test/src/client.c
@@ -489,7 +489,7 @@ char *keyfile = NULL;
char *end = NULL;
int argi = 1;
int host_af, port, s_len, rc, sock, save_errno;
-int timeout = 1;
+int timeout = 5;
int tls_active = 0;
int sent_starttls = 0;
int tls_on_connect = 0;