diff options
author | ngie <ngie@FreeBSD.org> | 2016-09-02 04:12:36 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2016-09-02 04:12:36 +0000 |
commit | 75663f22d75f86aa3f5efc5cadbcff791f66b4f9 (patch) | |
tree | c1895972fd98fedcedd62fba7b7b17b66ef516ff | |
parent | a80af232a432914d0c8e6a0c45184d0efcbf1a98 (diff) | |
download | FreeBSD-src-75663f22d75f86aa3f5efc5cadbcff791f66b4f9.zip FreeBSD-src-75663f22d75f86aa3f5efc5cadbcff791f66b4f9.tar.gz |
MFstable/11 r304950:
MFC r304033:
Increase timeout from 10 minutes to 20 minutes for all tests
On particular slow networks, it can (on average) take longer to
resolve hosts to IP* addresses. 20 minutes seemed reasonable for
my work network
This will be solved in a more meaningful way (if possible) using
concurrency in the near future
-rw-r--r-- | lib/libc/tests/resolv/resolv_test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/tests/resolv/resolv_test.c b/lib/libc/tests/resolv/resolv_test.c index 74e89b1..1da42e3 100644 --- a/lib/libc/tests/resolv/resolv_test.c +++ b/lib/libc/tests/resolv/resolv_test.c @@ -291,7 +291,7 @@ do { \ ATF_TC(getaddrinfo_test); ATF_TC_HEAD(getaddrinfo_test, tc) { - atf_tc_set_md_var(tc, "timeout", "450"); + atf_tc_set_md_var(tc, "timeout", "1200"); } ATF_TC_BODY(getaddrinfo_test, tc) { @@ -301,7 +301,7 @@ ATF_TC_BODY(getaddrinfo_test, tc) ATF_TC(gethostby_test); ATF_TC_HEAD(gethostby_test, tc) { - atf_tc_set_md_var(tc, "timeout", "450"); + atf_tc_set_md_var(tc, "timeout", "1200"); } ATF_TC_BODY(gethostby_test, tc) { @@ -312,7 +312,7 @@ ATF_TC_BODY(gethostby_test, tc) ATF_TC(getipnodeby_test); ATF_TC_HEAD(getipnodeby_test, tc) { - atf_tc_set_md_var(tc, "timeout", "450"); + atf_tc_set_md_var(tc, "timeout", "1200"); } ATF_TC_BODY(getipnodeby_test, tc) { |