We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98f1779 commit 9be204bCopy full SHA for 9be204b
lib/lcovutil.pm
@@ -5510,10 +5510,11 @@ sub _read_info
5510
$filename = lcovutil::subst_file_name($1);
5511
# should this one be skipped?
5512
$skipCurrentFile = skipCurrentFile($filename);
5513
- if ($skipCurrentFile &&
5514
- !exists($lcovutil::excluded_files{$filename})) {
5515
- $lcovutil::excluded_files{$filename} = 1;
5516
- lcovutil::info("Excluding $filename\n");
+ if ($skipCurrentFile) {
+ if (!exists($lcovutil::excluded_files{$filename})) {
+ $lcovutil::excluded_files{$filename} = 1;
+ lcovutil::info("Excluding $filename\n");
5517
+ }
5518
next;
5519
}
5520
0 commit comments