From 2df7caae4b220860c0fbdadf8ab69856c133bf2c Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Fri, 30 Oct 2020 14:19:37 -0700 Subject: [PATCH] qa: remove obsolete test Since the work in [1], the kclient can be killed with network namespaces without powercycling. [1] https://tracker.ceph.com/issues/44044 Fixes: https://tracker.ceph.com/issues/23718 Signed-off-by: Patrick Donnelly --- qa/tasks/cephfs/cephfs_test_case.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/qa/tasks/cephfs/cephfs_test_case.py b/qa/tasks/cephfs/cephfs_test_case.py index 036986b54b08..db573f3ade2d 100644 --- a/qa/tasks/cephfs/cephfs_test_case.py +++ b/qa/tasks/cephfs/cephfs_test_case.py @@ -7,7 +7,6 @@ from shlex import split as shlex_split from io import StringIO from tasks.ceph_test_case import CephTestCase -from tasks.cephfs.fuse_mount import FuseMount from teuthology import contextutil from teuthology.misc import sudo_write_file @@ -107,13 +106,6 @@ class CephFSTestCase(CephTestCase): len(self.mounts), self.CLIENTS_REQUIRED )) - if self.REQUIRE_KCLIENT_REMOTE: - if not isinstance(self.mounts[0], FuseMount) or not isinstance(self.mounts[1], FuseMount): - # kclient kill() power cycles nodes, so requires clients to each be on - # their own node - if self.mounts[0].client_remote.hostname == self.mounts[1].client_remote.hostname: - self.skipTest("kclient clients must be on separate nodes") - if self.REQUIRE_ONE_CLIENT_REMOTE: if self.mounts[0].client_remote.hostname in self.mds_cluster.get_mds_hostnames(): self.skipTest("Require first client to be on separate server from MDSs") -- 2.47.3