From 1d72d675e6f88f8749e8a12aac0e06923bb2e208 Mon Sep 17 00:00:00 2001 From: Arshad Hussain Date: Mon, 27 Mar 2023 11:41:31 +0530 Subject: [PATCH] LU-16668 tests: sanity-quota/75 add missing param to quota_error quota_error() takes three parameters. Add missing parameters to one of the instance of quota_error() which only two params were passed. Test-Parameters: trivial testlist=sanity-quota env=ONLY=75 Signed-off-by: Arshad Hussain Change-Id: I660a4be2d65e7800812db1817614dcb1b38ee483 Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/50424 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Sergey Cheremencev Reviewed-by: Jian Yu Reviewed-by: Oleg Drokin --- lustre/tests/sanity-quota.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/tests/sanity-quota.sh b/lustre/tests/sanity-quota.sh index 8789429..386178a 100755 --- a/lustre/tests/sanity-quota.sh +++ b/lustre/tests/sanity-quota.sh @@ -5379,8 +5379,8 @@ test_75() # mmap write when over soft limit limit=$soft_limit - $DD of=$testfile count=${limit} || - quota_error a "root write failure, but expect success (1)" + $DD of=$testfile count=${limit} || quota_error a $TSTUSR \ + "root write failure, but expect success (1)" OFFSET=$((limit * 1024)) cancel_lru_locks osc -- 1.8.3.1