diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-02-09 12:37:05 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-02-09 12:37:05 +0100 |
commit | 7539f1aae3b41279dc5d49e09f448a78a071e114 (patch) | |
tree | 83045d741ac7fe5c157b609eed71dfc28794aef5 /qa/rpc-tests/test_framework | |
parent | b49a62379900762a39c2f00dcad764076426d954 (diff) |
tests: Make proxy_test work on travis servers without IPv6
Diffstat (limited to 'qa/rpc-tests/test_framework')
-rw-r--r-- | qa/rpc-tests/test_framework/netutil.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/qa/rpc-tests/test_framework/netutil.py b/qa/rpc-tests/test_framework/netutil.py index 50daa87937..bfdef76ad1 100644 --- a/qa/rpc-tests/test_framework/netutil.py +++ b/qa/rpc-tests/test_framework/netutil.py @@ -137,3 +137,18 @@ def addr_to_hex(addr): else: raise ValueError('Could not parse address %s' % addr) return binascii.hexlify(bytearray(addr)) + +def test_ipv6_local(): + ''' + Check for (local) IPv6 support. + ''' + import socket + # By using SOCK_DGRAM this will not actually make a connection, but it will + # fail if there is no route to IPv6 localhost. + have_ipv6 = True + try: + s = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM) + s.connect(('::1', 0)) + except socket.error: + have_ipv6 = False + return have_ipv6 |