From: Venky Shankar Date: Thu, 11 Sep 2025 03:35:19 +0000 (+0000) Subject: qa/cephfs: fix test_subvolume_group_charmap_inheritance test X-Git-Tag: testing/wip-jcollin-testing-20250912.051015-main~5^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=fe3d6417bfaef571a9bb4093b5a8dfdb3cc3e59d;p=ceph-ci.git qa/cephfs: fix test_subvolume_group_charmap_inheritance test Signed-off-by: Venky Shankar --- diff --git a/qa/tasks/cephfs/test_volumes.py b/qa/tasks/cephfs/test_volumes.py index f7785afc779..a2be0f68a2c 100644 --- a/qa/tasks/cephfs/test_volumes.py +++ b/qa/tasks/cephfs/test_volumes.py @@ -1295,15 +1295,15 @@ class TestSubvolumeGroups(TestVolumesHelper): self._fs_cmd("subvolume", "create", self.volname, subvolume, "--group_name", group) # make sure it exists - subvolpath = self._get_subvolume_path(self.volname, subvolume) + subvolpath = self._get_subvolume_path(self.volname, subvolume, group) self.assertNotEqual(subvolpath, None) # check case sensitivity - case_sensitive = self._fs_cmd("subvolume", "charmap", "get", self.volname, subvolume, "casesensitive") + case_sensitive = self._fs_cmd("subvolume", "charmap", "get", self.volname, subvolume, "casesensitive", group) self.assertEqual(case_sensitive.strip(), "0") # check normalization (it's implicitly enabled by --case-insensitive, with default value 'nfd') - normalization = self._fs_cmd("subvolume", "charmap", "get", self.volname, subvolume, "normalization") + normalization = self._fs_cmd("subvolume", "charmap", "get", self.volname, subvolume, "normalization", group) self.assertEqual(normalization.strip(), "nfc") def test_subvolume_group_info(self):