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 278ac87 commit 5e57505Copy full SHA for 5e57505
bin/genhtml
@@ -5122,12 +5122,13 @@ sub _synthesize
5122
# Synthesize source data from coverage trace to replace unreadable file
5123
my $suffix =
5124
$lcovutil::ignore[$lcovutil::ERROR_SOURCE] ?
5125
- ' - synthesizing fake content' :
5126
- '';
+ ' - synthesizing fake content.' :
+ '.';
5127
lcovutil::ignorable_error($lcovutil::ERROR_SOURCE,
5128
- "cannot read '" . $self->path() . "'$suffix")
+ "cannot read '" . $self->path() .
5129
+ "' - file is empty or unreadable$suffix")
5130
unless $main::no_sourceview;
- $why = 'not found';
5131
+ $why = 'empty or unreadable';
5132
} else {
5133
my $suffix = '';
5134
if ($lcovutil::ignore[$lcovutil::ERROR_RANGE]) {
0 commit comments