From: Xiubo Li Date: Wed, 4 Mar 2020 06:20:31 +0000 (-0500) Subject: qa/tasks/cephfs: umount the mountpoints when tearDown X-Git-Tag: v15.2.2~16^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9159f96f80065869d0efa335cdcae2fd35ed821a;p=ceph.git qa/tasks/cephfs: umount the mountpoints when tearDown Fixes: https://tracker.ceph.com/issues/44408 Signed-off-by: Xiubo Li (cherry picked from commit 64680a7e6466c38b918bf338dc03bc9f2f3b36b8) --- diff --git a/qa/tasks/cephfs/xfstests_dev.py b/qa/tasks/cephfs/xfstests_dev.py index 15ee52ca5e8c..c11561fae764 100644 --- a/qa/tasks/cephfs/xfstests_dev.py +++ b/qa/tasks/cephfs/xfstests_dev.py @@ -15,7 +15,7 @@ logger = logging.getLogger(__name__) class XFSTestsDev(CephFSTestCase): def setUp(self): - CephFSTestCase.setUp(self) + super(XFSTestsDev, self).setUp() self.prepare_xfstests_dev() def prepare_xfstests_dev(self): @@ -172,3 +172,5 @@ class XFSTestsDev(CephFSTestCase): self.mount_a.client_remote.run(args=['sudo', 'rm', '-rf', self.repo_path], omit_sudo=False, check_status=False) + + super(XFSTestsDev, self).tearDown()