From 12282314e2567973b1a7cb4d6806e987bf1a6755 Mon Sep 17 00:00:00 2001 From: Andreas Dilger Date: Wed, 11 May 2022 22:45:45 -0600 Subject: [PATCH] LU-15846 tests: don't use comma-separated debug flags To avoid test interop issues between 2.15 clients and 2.12/2.14 servers, don't use comma-separated debug flags in sanity-quota.sh quota_init() and quota_fini(). Test-Parameters: trivial testlist=sanity-quota.sh serverversion=2.12.8 Fixes: ffe259f81c ("LU-13055 libcfs: allow comma-separated masks") Signed-off-by: Andreas Dilger Change-Id: Ifca39054d14292bca8bcff9b8e03ae58fd5cc3a8 --- 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 80be73d..047fc22 100755 --- a/lustre/tests/sanity-quota.sh +++ b/lustre/tests/sanity-quota.sh @@ -492,7 +492,7 @@ reset_quota_settings() { # enable quota debug quota_init() { do_nodes $(comma_list $(nodes_list)) \ - "$LCTL set_param -n debug=+quota,trace" + "$LCTL set_param -n debug=+quota+trace" } quota_init reset_quota_settings @@ -5363,7 +5363,7 @@ run_test 81 "Race qmt_start_pool_recalc with qmt_pool_free" quota_fini() { do_nodes $(comma_list $(nodes_list)) \ - "lctl set_param -n debug=-quota,trace" + "lctl set_param -n debug=-quota+trace" if $PQ_CLEANUP; then disable_project_quota fi -- 1.8.3.1