From: Andreas Dilger Date: Thu, 12 May 2022 04:45:45 +0000 (-0600) Subject: LU-15846 tests: don't use comma-separated debug flags X-Git-Tag: 2.15.51~16 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=fe8315c25ed093d77a6f366e2a4849aba008b680;hp=7919255685d2080d619df71eecfa1545211b4ddb 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 env=ONLY=0 serverversion=2.14.0 Fixes: 6b6fde1026 ("LU-13055 libcfs: allow comma-separated masks") Signed-off-by: Andreas Dilger Change-Id: Ifca39054d14292bca8bcff9b8e03ae58fd5cc3a8 Reviewed-on: https://review.whamcloud.com/47308 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Patrick Farrell Reviewed-by: Arshad Hussain Reviewed-by: Wei Liu Reviewed-by: Oleg Drokin --- diff --git a/lustre/tests/sanity-quota.sh b/lustre/tests/sanity-quota.sh index b38f191..dd3e94e 100755 --- a/lustre/tests/sanity-quota.sh +++ b/lustre/tests/sanity-quota.sh @@ -496,7 +496,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 @@ -5560,7 +5560,7 @@ run_test 82 "verify more than 8 qids for single operation" 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