diff options
author | lanqinglong <lanqinglong@huawei.com> | 2016-01-28 18:06:07 +0800 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-01-28 10:10:47 +0000 |
commit | 755d64d0e25e5354b6fd50fdfc55c66068ba3cdf (patch) | |
tree | 3a67445b4d0870956998b4134fad2a36602485f5 /docker/run_tests.sh | |
parent | 74a3a087033a3607c675f8d812f9d9940d32686a (diff) |
change for get joid onos ip
(cherry picked from commit 03ec0a88e72ed6c2fdc2995d0c93d2c61f847ae3)
Change-Id: Ic6d420d855615ddf53de707c19771fffaba47bbf
Diffstat (limited to 'docker/run_tests.sh')
-rwxr-xr-x | docker/run_tests.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docker/run_tests.sh b/docker/run_tests.sh index 8fab51f6e..ff390453f 100755 --- a/docker/run_tests.sh +++ b/docker/run_tests.sh @@ -164,7 +164,11 @@ test/csit/suites/vpnservice ;; "onos") info "Running ONOS test case..." - python ${FUNCTEST_REPO_DIR}/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py + if [ $INSTALLER_TYPE == "joid" ]; then + python ${FUNCTEST_REPO_DIR}/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py -i joid + else + python ${FUNCTEST_REPO_DIR}/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py + fi ;; "promise") info "Running PROMISE test case..." |