From: Xiao Yang Date: Wed, 15 Mar 2017 10:37:26 +0000 (+0800) Subject: common/config: honor NFS_MOUNT_OPTIONS in _test_mount_opts X-Git-Tag: v2022.05.01~2119 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=643c6850277a2c0ecb065919e3ff44d514b83399;p=xfstests-dev.git common/config: honor NFS_MOUNT_OPTIONS in _test_mount_opts NFS_MOUNT_OPTIONS is always not applied on TEST_DEV when it has been defined. Signed-off-by: Xiao Yang Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- diff --git a/common/config b/common/config index 57c7dc3f..121f9df1 100644 --- a/common/config +++ b/common/config @@ -347,6 +347,9 @@ _test_mount_opts() ceph) export TEST_FS_MOUNT_OPTS=$CEPHFS_MOUNT_OPTIONS ;; + nfs) + export TEST_FS_MOUNT_OPTS=$NFS_MOUNT_OPTIONS + ;; *) ;; esac