Skip to content

Commit c9066f0

Browse files
committed
Allow running rpc_bind.py --nonloopback test without IPv6
1 parent 3dda4c5 commit c9066f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/rpc_bind.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def run_test(self):
6767

6868
self.log.info("Check for ipv6")
6969
have_ipv6 = test_ipv6_local()
70-
if not have_ipv6 and not self.options.run_ipv4:
70+
if not have_ipv6 and not (self.options.run_ipv4 or self.options.run_nonloopback):
7171
raise SkipTest("This test requires ipv6 support.")
7272

7373
self.log.info("Check for non-loopback interface")

0 commit comments

Comments
 (0)