summaryrefslogtreecommitdiff
path: root/openstack/do-tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'openstack/do-tests.sh')
-rwxr-xr-xopenstack/do-tests.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/openstack/do-tests.sh b/openstack/do-tests.sh
deleted file mode 100755
index ec319c7..0000000
--- a/openstack/do-tests.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-# Config
-OS_TEST_SCRIPT="openstack/tester"
-OS_NET_ID="b635e4b7-40f2-4ca2-8d35-644c479f6ba6"
-OS_FLAVOUR="dc1.1x2"
-
-# Inputs
-FILE="$1"
-shift
-TEST_FILES=( "$@" )
-
-# Run the test
-echo "Running: $OS_TEST_SCRIPT --net-id $OS_NET_ID --flavour $OS_FLAVOUR --image-file $FILE ${TEST_FILES[@]}"
-python -u "$OS_TEST_SCRIPT" \
- --net-id "$OS_NET_ID" \
- --flavour "$OS_FLAVOUR" \
- --image-file "$FILE" \
- "${TEST_FILES[@]}"