From: Kevin Wolf Date: Thu, 27 Jul 2017 13:13:20 +0000 (+0200) Subject: qemu-iotests/041: Fix leaked scratch images X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=db11d1ee85497e9e581f632d319b55e43f752baf;p=qemu.git qemu-iotests/041: Fix leaked scratch images qemu-iotests 041 left quorum_snapshot.img and target.img behind in the scratch directory. Make sure to clean up after completing the tests. Signed-off-by: Kevin Wolf Reviewed-by: Jeff Cody Reviewed-by: Eric Blake --- diff --git a/tests/qemu-iotests/041 b/tests/qemu-iotests/041 index 4cda540735..a860a31e9a 100755 --- a/tests/qemu-iotests/041 +++ b/tests/qemu-iotests/041 @@ -418,6 +418,7 @@ new_state = "1" def tearDown(self): self.vm.shutdown() os.remove(test_img) + os.remove(target_img) os.remove(backing_img) os.remove(self.blkdebug_file) @@ -568,6 +569,7 @@ new_state = "1" def tearDown(self): self.vm.shutdown() os.remove(test_img) + os.remove(target_img) os.remove(backing_img) os.remove(self.blkdebug_file) @@ -821,7 +823,7 @@ class TestRepairQuorum(iotests.QMPTestCase): def tearDown(self): self.vm.shutdown() - for i in self.IMAGES + [ quorum_repair_img ]: + for i in self.IMAGES + [ quorum_repair_img, quorum_snapshot_file ]: # Do a try/except because the test may have deleted some images try: os.remove(i)