From a0462e45003e475f0a4691b9430e52c04ca5e80d Mon Sep 17 00:00:00 2001 From: Xiubo Li Date: Sat, 9 Oct 2021 11:12:18 +0800 Subject: [PATCH] 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 --- src/test/libcephfs/test.cc | 1 + 1 file changed, 1 insertion(+) 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); } -- 2.47.3