The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!perl -w

use Test::More tests => 1;
use ExtUtils::Manifest qw(manicheck);

my @missing_files = do {
  local $SIG{__WARN__} = sub { }; # suppress "No such file:" messages
  manicheck;
};

is_deeply \@missing_files, [], 'missing files from MANIFEST'
  or map diag("$_\n"), @missing_files;