From: Hongchao Zhang Date: Fri, 17 Nov 2017 15:05:17 +0000 (+0800) Subject: LU-8999 test: check chown result X-Git-Tag: 2.10.57~96 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=refs%2Fchanges%2F43%2F30243%2F4;p=fs%2Flustre-release.git LU-8999 test: check chown result For test_38 in sanity-quota, the chown operation should be checked whether it succeeds or not. the patch also collects the output of quota users if the test failed. Change-Id: I6c04f9519f3f097af7126064380faf1bdc4fff6a Signed-off-by: Hongchao Zhang Reviewed-on: https://review.whamcloud.com/30243 Tested-by: Jenkins Reviewed-by: Fan Yong Reviewed-by: Jian Yu Tested-by: Maloo Reviewed-by: Oleg Drokin --- diff --git a/lustre/tests/sanity-quota.sh b/lustre/tests/sanity-quota.sh index 48f8ad6..6293ad9 100755 --- a/lustre/tests/sanity-quota.sh +++ b/lustre/tests/sanity-quota.sh @@ -2732,7 +2732,8 @@ test_38() { echo "Create $file_cnt files..." for i in `seq $file_cnt`; do touch $TESTFILE-$i - chown $((file_cnt - i)):$((file_cnt - i)) $TESTFILE-$i + chown $((file_cnt - i)):$((file_cnt - i)) $TESTFILE-$i || + error "failed to chown $TESTFILE-$i" done cancel_lru_locks osc sync; sync_all_data || true @@ -2744,7 +2745,10 @@ test_38() { acct_cnt=$(do_facet mds1 $LCTL get_param $procf | grep "id:" | wc -l) echo "Found $acct_cnt id entries" - [ $file_cnt -eq $acct_cnt ] || error "skipped id entries" + [ $file_cnt -eq $acct_cnt ] || { + do_facet mds1 $LCTL get_param $procf + error "skipped id entries" + } cleanup_quota_test }