diff options
author | John Newbery <john@johnnewbery.com> | 2017-05-18 16:36:39 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-05-22 14:46:18 -0400 |
commit | 930deb9b2c5a8234d430f0a739c97e1fc961ffad (patch) | |
tree | 70110241c9c82f3bec8c144d37febf6c37410e8f /test/functional/rpcbind_test.py | |
parent | e4775167cb4b15e6a37290d27009386efb1e5e97 (diff) |
[tests] skipped tests should clean up after themselves
Diffstat (limited to 'test/functional/rpcbind_test.py')
-rwxr-xr-x | test/functional/rpcbind_test.py | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/test/functional/rpcbind_test.py b/test/functional/rpcbind_test.py index efc36481d1..d8ab4e6f98 100755 --- a/test/functional/rpcbind_test.py +++ b/test/functional/rpcbind_test.py @@ -7,7 +7,7 @@ import socket import sys -from test_framework.test_framework import BitcoinTestFramework +from test_framework.test_framework import BitcoinTestFramework, SkipTest from test_framework.util import * from test_framework.netutil import * @@ -56,8 +56,7 @@ class RPCBindTest(BitcoinTestFramework): def run_test(self): # due to OS-specific network stats queries, this test works only on Linux if not sys.platform.startswith('linux'): - self.log.warning("This test can only be run on linux. Skipping test.") - sys.exit(self.TEST_EXIT_SKIPPED) + raise SkipTest("This test can only be run on linux.") # find the first non-loopback interface for testing non_loopback_ip = None for name,ip in all_interfaces(): @@ -65,15 +64,13 @@ class RPCBindTest(BitcoinTestFramework): non_loopback_ip = ip break if non_loopback_ip is None: - self.log.warning("This test requires at least one non-loopback IPv4 interface. Skipping test.") - sys.exit(self.TEST_EXIT_SKIPPED) + raise SkipTest("This test requires at least one non-loopback IPv4 interface.") try: s = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM) s.connect(("::1",1)) s.close except OSError: - self.log.warning("This test requires IPv6 support. Skipping test.") - sys.exit(self.TEST_EXIT_SKIPPED) + raise SkipTest("This test requires IPv6 support.") self.log.info("Using interface %s for testing" % non_loopback_ip) |