verilator/test_regress/t/t_dist_manifest.pl
Todd Strader 26436cf4dd Tests: Fix files ignored by t_dist_manifest, bug1438.
Signed-off-by: Wilson Snyder <wsnyder@wsnyder.org>
2019-05-15 19:02:17 -04:00

97 lines
2.8 KiB
Perl
Executable File

#!/usr/bin/perl
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
#
# Copyright 2003 by Wilson Snyder. This program is free software; you can
# redistribute it and/or modify it under the terms of either the GNU
# Lesser General Public License Version 3 or the Perl Artistic License
# Version 2.0.
scenarios(dist => 1);
my $root = "..";
### Must trim output before and after our file list
my %files = %{get_manifest_files($root)};
my $all_files = `cd $root && find . -type f -print`;
foreach my $file (split /\s+/,$all_files) {
next if $file eq '';
$file =~ s!^\./!!;
$files{$file} |= 2;
}
my %file_regexps;
my $skip = file_contents("$root/MANIFEST.SKIP");
foreach my $file (sort keys %files) {
foreach my $skip (split /\s+/,$skip) {
if ($file =~ /$skip/) {
$files{$file} |= 4;
$file_regexps{$file} = $skip;
}
}
}
# The repo may be a Git worktree
my $git_dir = `cd $root ; git rev-parse --git-common-dir`;
chomp $git_dir;
if (! -d $git_dir) {
$git_dir = ".git";
}
# Ignore files localy excluded
my $git_exclude = `cd $root && git ls-files --others --ignored --exclude-from $git_dir/info/exclude`;
foreach my $exclude (split /\s+/, $git_exclude) {
if (exists $files{$exclude}) {
$files{$exclude} |= 8;
}
}
my %warns;
foreach my $file (sort keys %files) {
my $tar = $files{$file}&1;
my $dir = $files{$file}&2;
my $skip = $files{$file}&4;
my $exclude = $files{$file}&8;
print +(($tar ? "TAR ":" ")
.($dir ? "DIR ":" ")
.($skip ? "SKIP ":" ")
.($exclude ? "EXCL ":" ")
." $file\n") if $Self->{verbose};
if ($dir && !$tar && !$skip && !$exclude) {
$warns{$file} = "File not in manifest or MANIFEST.SKIP: $file";
} elsif (!$dir && $tar && !$skip) {
$warns{$file} = "File in manifest, but not directory: $file";
} elsif ($dir && $tar && $skip) {
$warns{$file} = "File in manifest and also MANIFEST.SKIP, too general skip regexp '$file_regexps{$file}'?: $file";
}
}
if (keys %warns) {
# First warning lists everything as that's shown in the driver summary
error("Files mismatch with manifest: ",join(' ',sort keys %warns));
foreach my $file (sort keys %warns) {
error($warns{$file});
}
}
ok(1);
1;
sub get_manifest_files {
my $root = shift;
`cd $root && make dist-file-list`;
my $manifest_files = `cd $root && make dist-file-list`;
$manifest_files =~ s!.*begin-dist-file-list:!!sg;
$manifest_files =~ s!end-dist-file-list:.*$!!sg;
print "MF $manifest_files\n" if $Self->{verbose};
my %files;
foreach my $file (split /\s+/,$manifest_files) {
next if $file eq '';
$files{$file} |= 1;
}
return \%files;
}