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 Mar 30, 2021
1 parent 44b4e46 commit a9aeb1d
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 a9aeb1d

Please sign in to comment.