diff options
author | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2017-11-21 00:46:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-11-21 00:46:35 +0000 |
commit | 174b299271189496bae4c4d6727ea26a7a098756 (patch) | |
tree | b063e18c795988e38e1eb4afa74d4cbf9524f057 /utils/test/reporting/docker/reporting.sh | |
parent | fd65ec9e84ae025e6b903c403514405ba0bb0a61 (diff) | |
parent | f11f26d23dabde24b0bcd67ac81b094aa89eb6c9 (diff) |
Merge "Remove 'utils/test' Directory and update INFO"
Diffstat (limited to 'utils/test/reporting/docker/reporting.sh')
-rwxr-xr-x | utils/test/reporting/docker/reporting.sh | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/utils/test/reporting/docker/reporting.sh b/utils/test/reporting/docker/reporting.sh deleted file mode 100755 index 2cb438d00..000000000 --- a/utils/test/reporting/docker/reporting.sh +++ /dev/null @@ -1,77 +0,0 @@ -#!/bin/bash - -export PYTHONPATH="${PYTHONPATH}:./reporting" -export CONFIG_REPORTING_YAML=./reporting/reporting.yaml - -declare -a versions=(euphrates danube master) -declare -a projects=(functest storperf yardstick qtip vsperf bottlenecks) - -project=$1 -reporting_type=$2 - -# create Directories if needed -for i in "${versions[@]}" -do - for j in "${projects[@]}" - do - mkdir -p display/$i/$j - done -done - -# copy images, js, css, 3rd_party -cp -Rf 3rd_party display -cp -Rf css display -cp -Rf html/* display -cp -Rf img display -cp -Rf js display - -# if nothing is precised run all the reporting generation -# projet | option -# $1 | $2 -# functest | status, vims, tempest -# yardstick | status -# storperf | status -# qtip | status -# vsperf | status - -function report_project() -{ - project=$1 - dir=$2 - type=$3 - echo "********************************" - echo " $project reporting " - echo "********************************" - python ./reporting/$dir/reporting-$type.py - if [ $? ]; then - echo "$project reporting $type...OK" - else - echo "$project reporting $type...KO" - fi -} - -if [ -z "$1" ]; then - echo "********************************" - echo " * Static status reporting *" - echo "********************************" - for i in "${projects[@]}" - do - report_project $i $i "status" - sleep 5 - done - - echo "Functest reporting vIMS..." - report_project "functest" "functest" "vims" - echo "reporting vIMS...OK" - sleep 5 - echo "Functest reporting Tempest..." - report_project "functest" "functest" "tempest" - echo "reporting Tempest...OK" - sleep 5 - -else - if [ -z "$2" ]; then - reporting_type="status" - fi - report_project $project $project $reporting_type -fi |