Browse Source

remove root test directory for RPC tests

0.14
whythat 8 years ago
parent
commit
438e94dc33
  1. 5
      qa/rpc-tests/test_framework/test_framework.py

5
qa/rpc-tests/test_framework/test_framework.py

@ -125,7 +125,8 @@ class BitcoinTestFramework(object): @@ -125,7 +125,8 @@ class BitcoinTestFramework(object):
self.add_options(parser)
(self.options, self.args) = parser.parse_args()
self.options.tmpdir += '/' + str(self.options.port_seed)
# backup dir variable for removal at cleanup
self.options.root, self.options.tmpdir = self.options.tmpdir, self.options.tmpdir + '/' + str(self.options.port_seed)
if self.options.trace_rpc:
logging.basicConfig(level=logging.DEBUG, stream=sys.stdout)
@ -176,6 +177,8 @@ class BitcoinTestFramework(object): @@ -176,6 +177,8 @@ class BitcoinTestFramework(object):
if not self.options.nocleanup and not self.options.noshutdown and success:
print("Cleaning up")
shutil.rmtree(self.options.tmpdir)
if not os.listdir(self.options.root):
os.rmdir(self.options.root)
else:
print("Not cleaning up dir %s" % self.options.tmpdir)

Loading…
Cancel
Save