Skip to content

Commit

Permalink
Drop colored gcov output on Linux.
Browse files Browse the repository at this point in the history
It isn't supported on the older gcc versions used by CI/CD.
  • Loading branch information
bwoodsend committed Apr 6, 2021
1 parent 47b8438 commit 25dad7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/coverage.sh
Expand Up @@ -10,7 +10,7 @@
# The exact arguments depend on whether we're using LLVM's gcov or GNU's.
unameOut="$(uname -s)"
case "${unameOut}" in
Linux*) gcov_options=(--relative-only -k);;
Linux*) gcov_options=(--relative-only);;
Darwin*) gcov_options=(--color);;
*) echo "Unsupported OS ${unameOut}"; exit 1;;
esac
Expand Down

0 comments on commit 25dad7e

Please sign in to comment.