diff options
author | 2019-05-07 10:52:21 -0400 | |
---|---|---|
committer | 2019-05-07 10:53:56 -0400 | |
commit | af2d30e94c0e0ff77467bbe49c766af1c45eb271 (patch) | |
tree | 88df68cce6315ae0e4fac9a32c8f953465a1c53f /boot/robot/ete.sh | |
parent | 2e3e9ce49761fa60e9605a5c4ac74c1509596029 (diff) |
remove boot/robot folder
this folder includes properties used for heat based deploment, which has
not been supported since casbalance. Worse it causes errors when doing
work in the local env and is confusing.
Change-Id: Ib7da4a0f73a43f476716a527455584620a009ad9
Issue-ID: TEST-147
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'boot/robot/ete.sh')
-rwxr-xr-x | boot/robot/ete.sh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/boot/robot/ete.sh b/boot/robot/ete.sh deleted file mode 100755 index a8a9ca42..00000000 --- a/boot/robot/ete.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/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 | portal ]" - 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 --exclude datarouter" - -docker exec openecompete_container ${ETEHOME}/runTags.sh ${VARIABLEFILES} ${VARIABLES} -d /share/logs/${OUTPUT_FOLDER} ${TAGS} --exclude oom --display 88 |