From: Xiubo Li Date: Tue, 21 Mar 2023 01:47:42 +0000 (+0800) Subject: qa: remove the FuseMount/KernelMount check in test_newops.py X-Git-Tag: v19.0.0~1501^2~2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=ede1afe91cee8e6331d275a2b6f6514accffc371;p=ceph.git qa: remove the FuseMount/KernelMount check in test_newops.py Will use the postmerge fragment to check this. Fixes: https://tracker.ceph.com/issues/57591 Signed-off-by: Xiubo Li --- diff --git a/qa/tasks/cephfs/test_newops.py b/qa/tasks/cephfs/test_newops.py index 4c34dabdd1035..0071cb5d37130 100644 --- a/qa/tasks/cephfs/test_newops.py +++ b/qa/tasks/cephfs/test_newops.py @@ -1,7 +1,5 @@ import logging from tasks.cephfs.cephfs_test_case import CephFSTestCase -from tasks.cephfs.fuse_mount import FuseMount -from tasks.cephfs.kernel_mount import KernelMount log = logging.getLogger(__name__) @@ -11,11 +9,6 @@ class TestNewOps(CephFSTestCase): For nautilus it will crash the MDSs when receive unknown OPs, as a workaround the clients should avoid sending them to nautilus """ - if isinstance(self.mount_a, FuseMount): - log.info('client is fuse mounted') - elif isinstance(self.mount_a, KernelMount): - log.info('client is kernel mounted') - self.skipTest("Currently kclient hasn't fixed new ops issue yet.") log.info("Test for new getvxattr op...") self.mount_a.run_shell(["mkdir", "newop_getvxattr_dir"])