diff options
author | Vedant Kumar <vsk@apple.com> | 2019-10-29 15:47:23 -0700 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2019-10-29 18:26:33 -0700 |
commit | bfed824b57d14e2ba98ddbaf1a1410cf04a3e279 (patch) | |
tree | ef8dc4694911d21ef423ad7c023fb4997b541be9 /llvm/tools/llvm-cov/CoverageReport.h | |
parent | 3b982b11f4e7c45c59ff80136efab7c116313e98 (diff) | |
download | bcm5719-llvm-bfed824b57d14e2ba98ddbaf1a1410cf04a3e279.tar.gz bcm5719-llvm-bfed824b57d14e2ba98ddbaf1a1410cf04a3e279.zip |
[llvm-cov] Add option to whitelist filenames
Add the `-whitelist-filename-regex` option to restrict coverage
reporting to file paths that match a whitelist regex.
Patch by Michael Daniels!
rdar://56720320
Diffstat (limited to 'llvm/tools/llvm-cov/CoverageReport.h')
-rw-r--r-- | llvm/tools/llvm-cov/CoverageReport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-cov/CoverageReport.h b/llvm/tools/llvm-cov/CoverageReport.h index f9a092f510b..7290586f0a0 100644 --- a/llvm/tools/llvm-cov/CoverageReport.h +++ b/llvm/tools/llvm-cov/CoverageReport.h @@ -53,7 +53,7 @@ public: /// Render file reports for every unique file in the coverage mapping. void renderFileReports(raw_ostream &OS, - const CoverageFilters &IgnoreFilenameFilters) const; + const FilenameCoverageFilters &FilenameFilters) const; /// Render file reports for the files specified in \p Files. void renderFileReports(raw_ostream &OS, ArrayRef<std::string> Files) const; |