]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
qa: remove the FuseMount/KernelMount check in test_newops.py
authorXiubo Li <xiubli@redhat.com>
Tue, 21 Mar 2023 01:47:42 +0000 (09:47 +0800)
committerXiubo Li <xiubli@redhat.com>
Wed, 29 Mar 2023 01:07:58 +0000 (09:07 +0800)
Will use the postmerge fragment to check this.

Fixes: https://tracker.ceph.com/issues/57591
Signed-off-by: Xiubo Li <xiubli@redhat.com>
qa/tasks/cephfs/test_newops.py

index 4c34dabdd10351bc86d2033ac8f19c5569a9e479..0071cb5d371307e61514e9e84ed2e6ae39dcca1f 100644 (file)
@@ -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"])