Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified test/per_file_coverage.sh
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions test/run_envoy_bazel_coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ fi
set +e
if [[ "$VALIDATE_COVERAGE" == "true" ]] && [[ "${FUZZ_COVERAGE}" == "false" ]]; then
echo "Checking per-extension coverage"
output=$(./test/per_file_coverage.sh)
output=$(sh ./test/per_file_coverage.sh)
Comment thread
phlax marked this conversation as resolved.
Outdated

if [ $? -eq 1 ]; then
if [ $? -ne 0 ]; then
echo Per-extension coverage failed:
echo "$output"
COVERAGE_FAILED=1
Expand Down