From a47128600fce1dd5135af610d0b31dafe1baa9d0 Mon Sep 17 00:00:00 2001 From: Alex Deiter Date: Thu, 13 Jul 2023 00:36:37 +0400 Subject: [PATCH] LU-16341 tests: skip sanity-quota/test_1b for old MDS Skip sanity-quota test_1b for old MDS missing the fix for LU-16341 kernel NULL in qmt_site_recalc_cb. Fixes: d965d63415 ("LU-16341 quota: fix panic in qmt_site_recalc_cb") Test-Parameters: trivial testlist=sanity-quota env=ONLY=1b Signed-off-by: Alex Deiter Change-Id: I1b1bc3fdfa8f36b0c20a9a06721735c8e02c034c --- lustre/tests/sanity-quota.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lustre/tests/sanity-quota.sh b/lustre/tests/sanity-quota.sh index 76773d9..f9b40b4 100755 --- a/lustre/tests/sanity-quota.sh +++ b/lustre/tests/sanity-quota.sh @@ -741,6 +741,9 @@ test_1a() { run_test 1a "Block hard limit (normal use and out of quota)" test_1b() { + (( MDS1_VERSION >= $(version_code 2.15.55) )) || + skip "Need MDS version at least 2.15.55" + local limit=10 # MB local global_limit=20 # MB local testfile="$DIR/$tdir/$tfile-0" -- 1.8.3.1