summaryrefslogtreecommitdiffstats
path: root/ci/exec_test.sh
diff options
context:
space:
mode:
authorManuel Buil <manuel.buil@ericsson.com>2016-07-27 18:03:55 +0200
committerManuel Buil <manuel.buil@ericsson.com>2016-07-28 14:55:19 +0200
commitf80d9312389dc97a570e5fbcde3491080cc9e307 (patch)
tree44ffbcaf4c7e4517c982dd9bdcf1b44b372f8ddd /ci/exec_test.sh
parent748b183ff97ad7ad259a76dcef348a7b2c2fc00a (diff)
Scripts added to enable the SFC-ODL test in CI
We need to install Tacker in the server before running the test cases Change-Id: Id7daee80627bc71c335fcb3efa5d389594641b65 Signed-off-by: Manuel Buil <manuel.buil@ericsson.com>
Diffstat (limited to 'ci/exec_test.sh')
-rwxr-xr-xci/exec_test.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/ci/exec_test.sh b/ci/exec_test.sh
index f168697c1..800b44ab4 100755
--- a/ci/exec_test.sh
+++ b/ci/exec_test.sh
@@ -167,6 +167,12 @@ function run_test(){
python ${FUNCTEST_REPO_DIR}/testcases/features/domino.py
;;
"odl-sfc")
+ bash ${FUNCTEST_REPO_DIR}/testcases/features/sfc/server_presetup_CI.bash
+ ret_val=$?
+ if [ $ret_val != 0 ]; then
+ exit $ret_val
+ fi
+ source ${FUNCTEST_REPO_DIR}/testcases/features/sfc/tackerc
python ${FUNCTEST_REPO_DIR}/testcases/features/sfc/sfc.py
;;
"parser")