diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-08-16 14:14:28 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-08-22 08:52:24 +0800 |
commit | 1da5dd1c5a8b3d3f72086a56a0d525f50199db8b (patch) | |
tree | 32188a7d41c88832d40ccb009833cdbe57c2f5cf /ci | |
parent | 9b830f30a6e93643e4aa1312f9439e34f2d74530 (diff) |
refactor vping
There are lots of common processes in vPing_userdata.py
and vPing_ssh.py, abstract and refactor them.
JIRA: FUNCTEST-414
Change-Id: I4cd2c635318c063319d2a3c31f9a1e512eeea6c8
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/exec_test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/exec_test.sh b/ci/exec_test.sh index d7883307b..a6eeab49b 100755 --- a/ci/exec_test.sh +++ b/ci/exec_test.sh @@ -73,10 +73,10 @@ function run_test(){ ${FUNCTEST_REPO_DIR}/testcases/OpenStack/healthcheck/healthcheck.sh ;; "vping_ssh") - python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/vPing/vPing_ssh.py $report + python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/vPing/vping.py -m ssh $report ;; "vping_userdata") - python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/vPing/vPing_userdata.py $report + python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/vPing/vping.py -m userdata $report ;; "odl") odl_tests |