From 0f6c4486659899092085fcaa32dcf78da19c02e5 Mon Sep 17 00:00:00 2001 From: James Nunez Date: Thu, 4 Jan 2018 14:13:37 -0700 Subject: [PATCH] LU-9411 tests: remove spaces around '+=' In sanity test 27D, the variable that collects tests to skip needs to have spaces removed when the variable is being concatenated with new tests to skip. Test-Parameters: trivial Lustre-change: https://review.whamcloud.com/30725 Lustre-commit: ecc770c3435b8dc277f7b7606e93f22d2c6a6069 Signed-off-by: James Nunez Change-Id: Ie57efecd2867b748f56998bc2fc375ea9d566611 Reviewed-by: Saurabh Tandan Reviewed-by: Wei Liu Reviewed-by: Cliff White Signed-off-by: Minh Diep Reviewed-on: https://review.whamcloud.com/31112 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: John L. Hammond --- lustre/tests/sanity.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index cda9106..0274844 100755 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -2072,10 +2072,10 @@ test_27D() { local skip27D [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] && - skip27D += "-s 29" + skip27D+="-s 29" [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \ $(lustre_version_code client) -lt $(version_code 2.9.55) ] && - skip27D += "-s 30,31" + skip27D+=" -s 30,31" llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D || error "llapi_layout_test failed" -- 1.8.3.1