From: 이춘석/동작제어Lab(SR)/Staff Engineer/삼성전자 Date: Tue, 27 Nov 2018 04:13:42 +0000 (+0900) Subject: Fix incorrect path of lcov_cobertura.py in script (#3718) X-Git-Tag: 0.3~318 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5947329d03f49c282560a3e5108dda25815a7304;p=platform%2Fcore%2Fml%2Fnnfw.git Fix incorrect path of lcov_cobertura.py in script (#3718) There was a typo on sciprt path for lcov_cobertura.py Signed-off-by: Chunseok Lee --- diff --git a/scripts/command/gen_coverage_report.sh b/scripts/command/gen_coverage_report.sh index 1083061..7adfc72 100755 --- a/scripts/command/gen_coverage_report.sh +++ b/scripts/command/gen_coverage_report.sh @@ -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}"