summaryrefslogtreecommitdiffstats
path: root/jjb/functest/functest-suite.sh
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2020-08-03 11:09:45 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2020-08-03 11:35:48 +0200
commit5360b47f03a7b8d8b1487943c74c7edbd2255935 (patch)
tree5b4c4e100e1972c392c6efb687374bdad9928f94 /jjb/functest/functest-suite.sh
parenteb72439885a4614c83213dc4b15fc7d629d29aba (diff)
Remove former Functest shell scripts
They are obsolete because the verification jobs are generated via XtestingCI (see Functest, Airship, CNTT, etc.). It's safe as Fuel, the latest old OPNFV installer, dropped its gating due to lack of hardware resources. Change-Id: I9b986ec4622001ae3540f542fe0cf72fa51ea009 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'jjb/functest/functest-suite.sh')
-rwxr-xr-xjjb/functest/functest-suite.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/jjb/functest/functest-suite.sh b/jjb/functest/functest-suite.sh
deleted file mode 100755
index 469a57726..000000000
--- a/jjb/functest/functest-suite.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-container_id=$(docker ps -a | grep opnfv/functest | awk '{print $1}' | head -1)
-if [ -z $container_id ]; then
- echo "Functest container not found"
- exit 1
-fi
-
-global_ret_val=0
-
-tests=($(echo $FUNCTEST_SUITE_NAME | tr "," "\n"))
-for test in ${tests[@]}; do
- cmd="run_tests -t $test"
- docker exec $container_id $cmd
- let global_ret_val+=$?
-done
-
-ret_val_file="${HOME}/opnfv/functest/results/${BRANCH##*/}/return_value"
-echo ${global_ret_val}>${ret_val_file}
-
-exit 0