Fix incorrect path of lcov_cobertura.py in script (#3718)
author이춘석/동작제어Lab(SR)/Staff Engineer/삼성전자 <chunseok.lee@samsung.com>
Tue, 27 Nov 2018 04:13:42 +0000 (13:13 +0900)
committer오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Tue, 27 Nov 2018 04:13:42 +0000 (13:13 +0900)
There was a typo on sciprt path for lcov_cobertura.py

Signed-off-by: Chunseok Lee <chunseok.lee@samsung.com>
scripts/command/gen_coverage_report.sh

index 1083061..7adfc72 100755 (executable)
@@ -56,4 +56,4 @@ COVERTURA_PATH="${OUTPUT_PATH}/nnfw_coverage.xml"
 "${GENHTML_PATH}" "${FINAL_COVERAGE_INFO_PATH}" --output-directory "${HTML_PATH}" ${GENHTML_FLAG:-}
 
 tar -zcf "${OUTPUT_PATH}"/coverage_report.tar.gz "${HTML_PATH}"
-python ${HOST_HOME}/externals/lcov-to-covertura/lcov_cobertura.py "${FINAL_COVERAGE_INFO_PATH}" -o "${COVERTURA_PATH}"
+python ${HOST_HOME}/externals/lcov-to-covertura-xml/lcov_cobertura.py "${FINAL_COVERAGE_INFO_PATH}" -o "${COVERTURA_PATH}"