From: Antoine Pitrou Date: Sat, 9 Jul 2011 00:31:24 +0000 (+0200) Subject: Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporary X-Git-Tag: v3.2.1~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9163c473dc0e025bc3b922a94edc82d81667a05d;p=thirdparty%2FPython%2Fcpython.git Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporary failure in name resolution. Should fix a buildbot failure. --- diff --git a/Lib/test/support.py b/Lib/test/support.py index 83ea6c1bf0fc..e2d7ae05a584 100644 --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -867,6 +867,7 @@ def transient_internet(resource_name, *, timeout=30.0, errnos=()): ('ETIMEDOUT', 110), ] default_gai_errnos = [ + ('EAI_AGAIN', -3), ('EAI_NONAME', -2), ('EAI_NODATA', -5), # Encountered when trying to resolve IPv6-only hostnames diff --git a/Misc/NEWS b/Misc/NEWS index e4ddb3cd5d93..b550cc2136c7 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -19,6 +19,9 @@ Library Tests ----- +- Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporary + failure in name resolution. + - Avoid failing in test_urllibnet.test_bad_address when some overzealous DNS service (e.g. OpenDNS) resolves a non-existent domain name. The test is now skipped instead.