From: Xiubo Li Date: Sat, 9 Oct 2021 03:12:18 +0000 (+0800) Subject: test: shutdown the mounter after test finishes X-Git-Tag: v16.2.7~75^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F43475%2Fhead;p=ceph.git test: shutdown the mounter after test finishes In the previous backport commit (5772641cb9bde083), when resolving the conflicts, this has been missed. Fixes: https://tracker.ceph.com/issues/52876 Signed-off-by: Xiubo Li --- diff --git a/src/test/libcephfs/test.cc b/src/test/libcephfs/test.cc index 1c28bb051b2e..9a7912c94fd6 100644 --- a/src/test/libcephfs/test.cc +++ b/src/test/libcephfs/test.cc @@ -3534,4 +3534,5 @@ TEST(LibCephFS, LookupMdsPrivateInos) { ASSERT_EQ(-ESTALE, ceph_ll_lookup_inode(cmount, ino, &inode)); } } + ceph_shutdown(cmount); }