Bugfix: fix a bug in lxd scenario 37/23137/1
authorJingLu5 <lvjing5@huawei.com>
Fri, 14 Oct 2016 04:04:24 +0000 (12:04 +0800)
committerJingLu5 <lvjing5@huawei.com>
Fri, 14 Oct 2016 04:04:24 +0000 (12:04 +0800)
JIRA: YARDSTICK-325

Change-Id: I6e3aaeb3070c97ab306848b0e7fdc568a486663e
Signed-off-by: JingLu5 <lvjing5@huawei.com>
tests/ci/load_images.sh

index 8c7caf4..49b9727 100755 (executable)
@@ -25,7 +25,7 @@ build_yardstick_image()
     echo
     echo "========== Build yardstick cloud image =========="
 
-    if [ "$DEPLOY_SCENARIO" == *"-lxd-"* ]; then
+    if [[ "$DEPLOY_SCENARIO" == *"-lxd-"* ]]; then
         local cmd="sudo $(which yardstick-img-lxd-modify) $(pwd)/tools/ubuntu-server-cloudimg-modify.sh"
 
         # Build the image. Retry once if the build fails
@@ -88,7 +88,7 @@ load_yardstick_image()
         EXTRA_PARAMS=$EXTRA_PARAMS" --property hw_mem_page_size=large"
     fi
 
-    if [ "$DEPLOY_SCENARIO" == *"-lxd-"* ]; then
+    if [[ "$DEPLOY_SCENARIO" == *"-lxd-"* ]]; then
         output=$(eval glance --os-image-api-version 1 image-create \
             --name yardstick-trusty-server \
             --is-public true --disk-format root-tar \