From: Wang Shilong Date: Sun, 7 Apr 2019 03:44:51 +0000 (+0800) Subject: LU-12166 test: fix broken detection on ZFS X-Git-Tag: 2.12.53~44 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=0f2cd5948b870c0f82a70bdf32f0c5f6d845144d;p=fs%2Flustre-release.git LU-12166 test: fix broken detection on ZFS We intent to run the command on mds, otherwise project quota will never be tested. Test-Parameters:trivial fstype=zfs Fixes: a046e87 ("LU-7991 quota: project quota against ZFS backend") Change-Id: I8650a0e1065f0bb465da01556472d3d23b22a530 Signed-off-by: Wang Shilong Reviewed-on: https://review.whamcloud.com/34609 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Hongchao Zhang Reviewed-by: Gu Zheng Reviewed-by: Oleg Drokin --- diff --git a/lustre/tests/sanity-quota.sh b/lustre/tests/sanity-quota.sh index 54e1bf6..14a20cd 100755 --- a/lustre/tests/sanity-quota.sh +++ b/lustre/tests/sanity-quota.sh @@ -85,7 +85,8 @@ is_project_quota_supported() { [ $(lustre_version_code $SINGLEMDS) -le \ $(version_code 2.10.53) ] && return 1 - $ZPOOL upgrade -v | grep project_quota && return 0 + do_facet mds1 $ZPOOL upgrade -v | + grep project_quota && return 0 fi return 1