Skip to content

Commit c3bb936

Browse files
committed
Merge #14790: Tests: Allow running rpc_bind.py --nonloopback test without IPv6
c9066f0 Allow running rpc_bind.py --nonloopback test without IPv6 (Kristaps Kaupe) Pull request description: Don't see a reason why this can't be tested with IPv4 only. Tree-SHA512: 515bdf700fad420e4b1798fd4978b53e2da3ddb26e43b16d68b43071bc912c325f1ceb10046ba3d0494dab289a53c45ddc2de9064117d8c1d6bf11e88323f490
2 parents 62cf608 + c9066f0 commit c3bb936

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
@@ -70,7 +70,7 @@ def run_test(self):
7070

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

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

0 commit comments

Comments
 (0)