diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-07-30 14:12:49 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-07-30 14:49:13 -0700 |
commit | 80237668597de035fd9788ea95786bb0bda68a02 (patch) | |
tree | 715bd1931e43c238e4bb356929718fcd0ffe63c4 /boot/robot/ete.sh | |
parent | 75b2c58811687602c1dab5cf2a69b2e94599bcee (diff) |
Remove demo, testuite/properties repos in robot VM
No longer clone demo and testsuite/properties repos
in robot VM. Instead, use demo repo content within
testsuite container, and pass properties directly
from heat template boot/ directory.
Change-Id: I9e472f9b6cea47dc2faebd091d95be9e89aff667
Issue-ID: INT-605
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'boot/robot/ete.sh')
-rwxr-xr-x | boot/robot/ete.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/boot/robot/ete.sh b/boot/robot/ete.sh new file mode 100755 index 00000000..c029dc2b --- /dev/null +++ b/boot/robot/ete.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# +# Run the testsuite for the passed tag. Valid tags are ete, health, closedloop, instantiate +# Please clean up logs when you are done... +# Note: Do not run multiple concurrent ete.sh as the --display is not parameterized and tests will collide +# +if [ "$1" == "" ];then + echo "Usage: ete.sh [ health | ete | closedloop | instantiate | distribute ]" + exit +fi + +mkdir -p /opt/eteshare/logs + +export TAGS="-i $1" +export ETEHOME=/var/opt/OpenECOMP_ETE +export GLOBAL_BUILD_NUMBER=$(ls -1q /opt/eteshare/logs/ | wc -l) +export OUTPUT_FOLDER=ETE_$(printf %04d $GLOBAL_BUILD_NUMBER)_$1 + +VARIABLEFILES="-V /share/config/vm_properties.py -V /share/config/integration_robot_properties.py -V /share/config/integration_preload_parameters.py" +VARIABLES="-v GLOBAL_BUILD_NUMBER:$GLOBAL_BUILD_NUMBER" + +docker exec openecompete_container ${ETEHOME}/runTags.sh ${VARIABLEFILES} ${VARIABLES} -d /share/logs/${OUTPUT_FOLDER} ${TAGS} --exclude oom --display 88 |