From ecc770c3435b8dc277f7b7606e93f22d2c6a6069 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 Signed-off-by: James Nunez Change-Id: Ie57efecd2867b748f56998bc2fc375ea9d566611 Reviewed-on: https://review.whamcloud.com/30725 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Saurabh Tandan Reviewed-by: Wei Liu Reviewed-by: Cliff White Reviewed-by: Oleg Drokin --- 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 c04480b..dce54bb 100755 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -2075,10 +2075,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