File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -4400,6 +4400,7 @@ sub skipCurrentFile
4400
4400
foreach my $p (@lcovutil::exclude_file_patterns ) {
4401
4401
my $pattern = $p -> [0];
4402
4402
if ($filename =~ $pattern ) {
4403
+ lcovutil::info(1, " exclude $filename : matches '" . $p -> [1] . " \n " );
4403
4404
++$p -> [-1];
4404
4405
return 1; # all done - explicitly excluded
4405
4406
}
@@ -4408,10 +4409,13 @@ sub skipCurrentFile
4408
4409
foreach my $p (@lcovutil::include_file_patterns ) {
4409
4410
my $pattern = $p -> [0];
4410
4411
if ($filename =~ $pattern ) {
4412
+ lcovutil::info(1,
4413
+ " include: $filename : matches '" . $p -> [1] . " \n " );
4411
4414
++$p -> [-1];
4412
4415
return 0; # explicitly included
4413
4416
}
4414
4417
}
4418
+ lcovutil::info(1, " exclude $filename : no include matches\n " );
4415
4419
return 1; # not explicitly included - so exclude
4416
4420
}
4417
4421
return 0;
You can’t perform that action at this time.
0 commit comments