diff options
author | Peter Mikus <pmikus@cisco.com> | 2017-07-20 12:19:18 +0200 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2017-07-20 12:19:18 +0200 |
commit | 2656fed5d73b3ffde2b8b7496a68b527e9e32045 (patch) | |
tree | 021ec83e48695ca0743ab53351a01b3f0cbe79e7 /resources/tools/report_gen/run_report.sh | |
parent | 5906589057ce7ed9e1182bc93381dee42c79f2a4 (diff) |
FIX: Report script typo
Change-Id: I1358fcf558f1156f2e1bc559652f6f98c5438b36
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Diffstat (limited to 'resources/tools/report_gen/run_report.sh')
-rwxr-xr-x | resources/tools/report_gen/run_report.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/resources/tools/report_gen/run_report.sh b/resources/tools/report_gen/run_report.sh index d73c466569..3c0e858015 100755 --- a/resources/tools/report_gen/run_report.sh +++ b/resources/tools/report_gen/run_report.sh @@ -141,12 +141,12 @@ if [[ ${DEBUG} -eq 0 ]] ; then curl --fail --silent ${CSIT_JEN_URL}/${JEN_JOB}/${JEN_BUILD}/robot/report/\*zip\*/robot-plugin.zip \ --output ${STATIC_DIR_ARCH}/${JEN_JOB}-${JEN_BUILD}.zip - unzip -o ${static_dir_arch}/${jen_job}-${jen_build}.zip -d ${working_dir}/ - python run_robot_data.py -i ${working_dir}/robot-plugin/output.xml \ - --output ${dtr_vpp_func_source_dir}/vpp_functional_results.rst \ + unzip -o ${STATIC_DIR_ARCH}/${JEN_JOB}-${JEN_BUILD}.zip -d ${WORKING_DIR}/ + python run_robot_data.py -i ${WORKING_DIR}/robot-plugin/output.xml \ + --output ${DTR_VPP_FUNC_SOURCE_DIR}/vpp_functional_results.rst \ --formatting rst --start 5 --level 2 - python run_robot_teardown_data.py -i ${working_dir}/robot-plugin/output.xml \ - --output ${dtc_vpp_func_source_dir}/vpp_functional_configuration.rst \ + python run_robot_teardown_data.py -i ${WORKING_DIR}/robot-plugin/output.xml \ + --output ${DTR_VPP_FUNC_SOURCE_DIR}/vpp_functional_configuration.rst \ --data "vat_h" -f "rst" --start 5 --level 2 #else # cp ./${JEN_JOB}-${JEN_BUILD}.zip ${STATIC_DIR_ARCH}/${JEN_JOB}-${JEN_BUILD}.zip |