From: Xiubo Li Date: Mon, 28 Nov 2022 05:52:53 +0000 (+0800) Subject: qa: switch TEST_FS_MOUNT_OPTS to CEPHFS_MOUNT_OPTIONS X-Git-Tag: v18.1.0~743^2~7 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b86450136de7d3bbf31adac34db4f0d1e7ebe565;p=ceph.git qa: switch TEST_FS_MOUNT_OPTS to CEPHFS_MOUNT_OPTIONS Both the test_dev and scratch_dev could use the CEPHFS_MOUNT_OPTIONS. Without this the xfstests tests will just be aborted without any error logs when testing the encrypt and it's very hard to debug. Fixes: https://tracker.ceph.com/issues/58133 Signed-off-by: Xiubo Li --- diff --git a/qa/tasks/cephfs/xfstests_dev.py b/qa/tasks/cephfs/xfstests_dev.py index ebf2ab069d67..de788ab42e6f 100644 --- a/qa/tasks/cephfs/xfstests_dev.py +++ b/qa/tasks/cephfs/xfstests_dev.py @@ -145,7 +145,7 @@ class XFSTestsDev(CephFSTestCase): export TEST_DIR={} export SCRATCH_DEV={} export SCRATCH_MNT={} - export TEST_FS_MOUNT_OPTS="-o name=admin,secret={}" + export CEPHFS_MOUNT_OPTIONS="-o name=admin,secret={}" ''').format(self.test_dev, self.test_dirs_mount_path, self.scratch_dev, self.scratch_dirs_mount_path, self.get_admin_key())