summaryrefslogtreecommitdiffstats
path: root/utils/infra_setup/heat_template/vstf_heat_template/vstf_test.sh
diff options
context:
space:
mode:
authorYiting.Li <liyiting@huawei.com>2016-01-11 20:43:17 +0800
committerJun Li <matthew.lijun@huawei.com>2016-01-12 03:25:07 +0000
commitf3b5d24668069b39142ae8dd8069919892eef6b3 (patch)
tree7498ff7b96476ffbaa68280e986d30966aebfcb6 /utils/infra_setup/heat_template/vstf_heat_template/vstf_test.sh
parent7180f36f9cac2dadeca49d46b36b23e9fb17b7cb (diff)
Add vstf_collector.py for upload tu case results.
JIRA: BOTTLENECK-29 Signed-off-by: qwyang0126 <qwyang0126@gmail.com> Change-Id: I238da7d9f208b3bba61001583e493a5362f5bc33 (cherry picked from commit 770a36af6a4b8681b4566cc970056c5645f6f6cf)
Diffstat (limited to 'utils/infra_setup/heat_template/vstf_heat_template/vstf_test.sh')
-rw-r--r--utils/infra_setup/heat_template/vstf_heat_template/vstf_test.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/infra_setup/heat_template/vstf_heat_template/vstf_test.sh b/utils/infra_setup/heat_template/vstf_heat_template/vstf_test.sh
index 051f2858..d162e4cf 100644
--- a/utils/infra_setup/heat_template/vstf_heat_template/vstf_test.sh
+++ b/utils/infra_setup/heat_template/vstf_heat_template/vstf_test.sh
@@ -75,11 +75,16 @@ function fn_result(){
return 0
}
+function fn_upload(){
+ python vstf_collector.py --config dashboard.json --dir result
+}
+
function main(){
fn_parser_ipaddress
fn_vstf_test_config
fn_testing_scenario
fn_result
+ fn_upload
return 0
}