From 3d064f457576fe87cce5813af7d33cf45e898e3d Mon Sep 17 00:00:00 2001 From: Morgan Richomme Date: Mon, 11 Jan 2016 16:45:00 +0100 Subject: Prepare Promise integration in Functest JIRA: FUNCTEST-68 Change-Id: I9dd3e49cf7cbcec932fb08af359c6e4784818155 Signed-off-by: Morgan Richomme --- docker/run_tests.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'docker/run_tests.sh') diff --git a/docker/run_tests.sh b/docker/run_tests.sh index dcaaeb9b..257fab1d 100755 --- a/docker/run_tests.sh +++ b/docker/run_tests.sh @@ -17,7 +17,7 @@ where: -h|--help show this help text -r|--report push results to database (false by default) -t|--test run specific set of tests - one or more of the following: vping,odl,rally,tempest,vims,onos. Separated by comma. + one or more of the following: vping,odl,rally,tempest,vims,onos, promise. Separated by comma. examples: @@ -115,7 +115,11 @@ function run_test(){ "onos") info "Running ONOS test case..." python ${FUNCTEST_REPO_DIR}/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py - esac + ;; + "promise") + info "Running PROMISE test case..." + # TODO + esac } -- cgit 1.2.3-korg