Skip to content

Commit

Permalink
Allow running rpc_bind.py --nonloopback test without IPv6
Browse files Browse the repository at this point in the history
  • Loading branch information
kristapsk authored and furszy committed Aug 10, 2021
1 parent 4a034d8 commit d4d6729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/rpc_bind.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def run_test(self):

self.log.info("Check for ipv6")
have_ipv6 = test_ipv6_local()
if not have_ipv6 and not self.options.run_ipv4:
if not have_ipv6 and not (self.options.run_ipv4 or self.options.run_nonloopback):
raise SkipTest("This test requires ipv6 support.")

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

0 comments on commit d4d6729

Please sign in to comment.