forked from github/verilator
Tests: Check for missing newlines at EOF.
This commit is contained in:
parent
1234c83953
commit
16bb97687a
@ -3,4 +3,4 @@
|
|||||||
* \section intro_sec Introduction
|
* \section intro_sec Introduction
|
||||||
*
|
*
|
||||||
* This is a full doxygen analysis of the Verilator source tree.
|
* This is a full doxygen analysis of the Verilator source tree.
|
||||||
*/
|
*/
|
||||||
|
@ -17,5 +17,4 @@ endmodule
|
|||||||
module array_test(
|
module array_test(
|
||||||
input din [0:15]
|
input din [0:15]
|
||||||
);
|
);
|
||||||
|
endmodule
|
||||||
endmodule
|
|
||||||
|
@ -20,10 +20,16 @@ foreach my $file (sort keys %files) {
|
|||||||
my $contents = file_contents($filename);
|
my $contents = file_contents($filename);
|
||||||
if ($file =~ /\.out$/) {
|
if ($file =~ /\.out$/) {
|
||||||
# Ignore golden files
|
# Ignore golden files
|
||||||
|
next;
|
||||||
} elsif ($contents =~ /[\001\002\003\004\005\006]/) {
|
} elsif ($contents =~ /[\001\002\003\004\005\006]/) {
|
||||||
# Ignore binrary files
|
# Ignore binary files
|
||||||
} elsif ($contents =~ /[ \t]\n/
|
next;
|
||||||
|| $contents =~ m/\n\n+$/) { # Regexp repeated below
|
}
|
||||||
|
if ($contents !~ /\n$/s && $contents ne "") {
|
||||||
|
$warns{$file} = "Missing trailing newline in $file";
|
||||||
|
}
|
||||||
|
if ($contents =~ /[ \t]\n/
|
||||||
|
|| $contents =~ m/\n\n+$/) { # Regexp repeated below
|
||||||
my $eol_ws_exempt = ($file =~ /(\.txt|\.html)$/
|
my $eol_ws_exempt = ($file =~ /(\.txt|\.html)$/
|
||||||
|| $file =~ m!^README$!
|
|| $file =~ m!^README$!
|
||||||
|| $file =~ m!/gtkwave/!);
|
|| $file =~ m!/gtkwave/!);
|
||||||
|
@ -80,4 +80,4 @@ module Test (/*AUTOARG*/
|
|||||||
out <= in inside {5'b1_1?1?};
|
out <= in inside {5'b1_1?1?};
|
||||||
end
|
end
|
||||||
|
|
||||||
endmodule // t
|
endmodule
|
||||||
|
Loading…
Reference in New Issue
Block a user