summaryrefslogtreecommitdiff
path: root/openstack/do-tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'openstack/do-tests.sh')
-rwxr-xr-xopenstack/do-tests.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/openstack/do-tests.sh b/openstack/do-tests.sh
index a615711..407e398 100755
--- a/openstack/do-tests.sh
+++ b/openstack/do-tests.sh
@@ -6,14 +6,14 @@ OS_NET_ID="b635e4b7-40f2-4ca2-8d35-644c479f6ba6"
OS_FLAVOUR="dc1.1x2"
# Inputs
-FILE=$1
+FILE="$1"
shift
-TEST_FILES=$@
+TEST_FILES=( "$@" )
# Run the test
-echo "Running: $OS_TEST_SCRIPT --net-id $OS_NET_ID --flavour $OS_FLAVOUR --image-file $FILE $TEST_FILES"
+echo "Running: $OS_TEST_SCRIPT --net-id $OS_NET_ID --flavour $OS_FLAVOUR --image-file $FILE ${TEST_FILES[@]}"
"$OS_TEST_SCRIPT" \
--net-id "$OS_NET_ID" \
--flavour "$OS_FLAVOUR" \
--image-file "$FILE" \
- $TEST_FILES
+ "${TEST_FILES[@]}"