summaryrefslogtreecommitdiffstats
path: root/docker/run_tests.sh
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-01-12 09:58:49 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-01-12 09:58:49 +0000
commit5c0e095139fcc8131db0df64086edfe1d6b43a22 (patch)
treea197b517fa650579edb115695f8eac6fb7007151 /docker/run_tests.sh
parentdab05332b65c232b563f128aa7919949e30c10d2 (diff)
parent3d064f457576fe87cce5813af7d33cf45e898e3d (diff)
Merge "Prepare Promise integration in Functest"
Diffstat (limited to 'docker/run_tests.sh')
-rwxr-xr-xdocker/run_tests.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/docker/run_tests.sh b/docker/run_tests.sh
index dcaaeb9bb..257fab1d9 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
- <test_name> one or more of the following: vping,odl,rally,tempest,vims,onos. Separated by comma.
+ <test_name> 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
}