aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_bind.py
diff options
context:
space:
mode:
authorKristaps Kaupe <kristaps@blogiem.lv>2018-11-22 23:57:07 +0200
committerKristaps Kaupe <kristaps@blogiem.lv>2018-11-22 23:57:07 +0200
commitc9066f07c94e3610f7762d6406851cd135790511 (patch)
treeb25b066cf8c81df7572effb41405a41a93bdb43a /test/functional/rpc_bind.py
parent3dda4c5f037ba8ef0d95244ac28326366ef16750 (diff)
downloadbitcoin-c9066f07c94e3610f7762d6406851cd135790511.tar.xz
Allow running rpc_bind.py --nonloopback test without IPv6
Diffstat (limited to 'test/functional/rpc_bind.py')
-rwxr-xr-xtest/functional/rpc_bind.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/rpc_bind.py b/test/functional/rpc_bind.py
index 53916d5290..22ea0bbceb 100755
--- a/test/functional/rpc_bind.py
+++ b/test/functional/rpc_bind.py
@@ -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")