You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 21, 2025. It is now read-only.
The gcov processing command issued by codecov contains malformed find predicates, and always fails. The failure looks like this:
… this is on macOS, which offers BSD find as the default. I verified the failure by installing GNU findutils with Homebrew and changing a local clone of codecov to use that (as /usr/local/bin/gfind) – the error message is slightly more helpful:
`/usr/local/bin/gfind /Users/fish/Dropbox/CLU/clu -not -path './bower_components/**' -not -path './node_modules/**' -not -path './vendor/**' -type f -name *.gcno -exec gcov -pb {} +` exited with status 1, error: “gfind: paths must precede expression: `'”
The
gcovprocessing command issued bycodecovcontains malformedfindpredicates, and always fails. The failure looks like this:… this is on macOS, which offers BSD
findas the default. I verified the failure by installing GNUfindutilswith Homebrew and changing a local clone ofcodecovto use that (as/usr/local/bin/gfind) – the error message is slightly more helpful:… the relevant
gcov-related test is, I think, the only test in thecodecovsuite that is completely commented out and skipped:… which suggests at least an acknowledgement of the problem, if not a genesis of same.