From 9647b5240cb407a04d09dba0aa54058f3a07f460 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 26 Dec 2002 17:04:45 +0000 Subject: Also skip testHostnameRes() if gethostbyaddr() raises an exception. --- Lib/test/test_socket.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 11883a8..bca1c6c 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -226,7 +226,11 @@ class GeneralModuleTests(unittest.TestCase): # Probably name lookup wasn't set up right; skip this test return self.assert_(ip.find('.') >= 0, "Error resolving host to ip.") - hname, aliases, ipaddrs = socket.gethostbyaddr(ip) + try: + hname, aliases, ipaddrs = socket.gethostbyaddr(ip) + except socket.error: + # Probably a similar problem as above; skip this test + return all_host_names = [hname] + aliases fqhn = socket.getfqdn() if not fqhn in all_host_names: -- cgit v0.12