Skip to content

Commit 10a006e

Browse files
committed
test: disable ipv6 tests for now
1 parent 2dacfb0 commit 10a006e

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

test/functional/test_framework/netutil.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,12 @@ def test_ipv6_local():
147147
'''
148148
# By using SOCK_DGRAM this will not actually make a connection, but it will
149149
# fail if there is no route to IPv6 localhost.
150-
have_ipv6 = True
151-
try:
152-
s = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
153-
s.connect(('::1', 1))
154-
except socket.error:
155-
have_ipv6 = False
156-
return have_ipv6
150+
return False
151+
# TODO: disabled until amazon ipv6 issues are resolved
152+
# have_ipv6 = True
153+
# try:
154+
# s = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
155+
# s.connect(('::1', 1))
156+
# except socket.error:
157+
# have_ipv6 = False
158+
# return have_ipv6

0 commit comments

Comments
 (0)