From c9066f07c94e3610f7762d6406851cd135790511 Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Thu, 22 Nov 2018 23:57:07 +0200 Subject: [PATCH] Allow running rpc_bind.py --nonloopback test without IPv6 --- test/functional/rpc_bind.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/rpc_bind.py b/test/functional/rpc_bind.py index 53916d529..22ea0bbce 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")