mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 11:57:28 -03:00
Allow running rpc_bind.py --nonloopback test without IPv6
This commit is contained in:
parent
3dda4c5f03
commit
c9066f07c9
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ class RPCBindTest(BitcoinTestFramework):
|
|||
|
||||
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")
|
||||
|
|
Loading…
Reference in a new issue