From: James Nunez Date: Thu, 4 Jan 2018 21:13:37 +0000 (-0700) Subject: LU-9411 tests: remove spaces around '+=' X-Git-Tag: 2.10.4-RC1~92 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=refs%2Fchanges%2F12%2F31112%2F2;p=fs%2Flustre-release.git 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 --- 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"