This is an automated email from the ASF dual-hosted git repository. csringhofer pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 8eb1d87edcea49642e73a13ae8cd666ef9bddcdb Author: Peter Rozsa <[email protected]> AuthorDate: Tue May 13 11:15:58 2025 +0200 IMPALA-14272: Add extra flags option for coverage_helper.sh This change adds an optional flag to coverage_helper.sh script that accepts additional parameters for the wrapped gcovr call. Tests: - manually validated that the script has the original behaviour if the newly added flag is not set, also if it's set, the parameters are pushed down correctly. Change-Id: Iea26c9967b62b06ded6a0cb4c0346f0e789beb80 Reviewed-on: http://gerrit.cloudera.org:8080/23290 Reviewed-by: Impala Public Jenkins <[email protected]> Tested-by: Peter Rozsa <[email protected]> --- bin/coverage_helper.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/coverage_helper.sh b/bin/coverage_helper.sh index f6a78f9ea..dd8d4f6f8 100755 --- a/bin/coverage_helper.sh +++ b/bin/coverage_helper.sh @@ -81,7 +81,8 @@ if [ ${REPORT_ACTION} -eq 1 ]; then --exclude=".*src/kudu.*" \ --exclude=".*generated-sources/gen-cpp.*" \ --exclude=".*src/util/bit-packing.inline.h.*" \ - --html --html-details -o "${REPORT_DIRECTORY}/index.html" \ + --html --html-details="${REPORT_DIRECTORY}/index.html" \ + ${EXTRA_COVERAGE_REPORTING_ARGUMENTS[@]} \ > "${REPORT_DIRECTORY}/gcovr.out" 2>&1 fi
