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
Check if json.gz files exist, not the gcov version.
Different versions of gcov output different types of files; older
versions output textual data, newer ones output compressed JSON files
(the switch happens in gcov).
"llvm-cov gcov" is supposed to be compatible with gcov, but never
outputs compressed JSON files. This means the version check will break
if gcov is substituted with this tool.
Checking for the output files created should avoid this issue, and be a
more robust check overall.
Fixes#18874
0 commit comments