Merge #8095: Test framework: only cleanup on successful test runs

1ad9339 Test framework: only cleanup on successful test runs (Suhas Daftuar)
This commit is contained in:
MarcoFalke 2016-05-25 11:52:25 +02:00
commit 6700cc993c
No known key found for this signature in database
GPG Key ID: 2D7F2372E50FE137
1 changed files with 3 additions and 1 deletions

View File

@ -165,9 +165,11 @@ class BitcoinTestFramework(object):
else:
print("Note: bitcoinds were not stopped and may still be running")
if not self.options.nocleanup and not self.options.noshutdown:
if not self.options.nocleanup and not self.options.noshutdown and success:
print("Cleaning up")
shutil.rmtree(self.options.tmpdir)
else:
print("Not cleaning up dir %s" % self.options.tmpdir)
if success:
print("Tests successful")