91 lines
1.9 KiB
Perl
Executable File
91 lines
1.9 KiB
Perl
Executable File
#!perl -w
|
|
#
|
|
# Test that every perl file we have passes the syntax check. This of
|
|
# course needs not only build dependencies but also run-time
|
|
# dependencies like libmoose-perl installed.
|
|
#
|
|
# Steve
|
|
# --
|
|
#
|
|
|
|
|
|
use strict;
|
|
use File::Find;
|
|
use Test::More;
|
|
|
|
#
|
|
# Find all the files beneath the current directory,
|
|
# and call 'checkFile' with the name.
|
|
#
|
|
find( { wanted => \&checkFile, no_chdir => 1 }, '.' );
|
|
|
|
done_testing();
|
|
|
|
#
|
|
# Check a file.
|
|
#
|
|
# If this is a perl file then call "perl -c $name", otherwise
|
|
# return
|
|
#
|
|
sub checkFile
|
|
{
|
|
# The file.
|
|
my $file = $File::Find::name;
|
|
|
|
# We don't care about directories or symbolic links
|
|
return if ( ! -f $file );
|
|
return if ( -l $file );
|
|
|
|
# Nor about Makefiles
|
|
return if ( $file =~ /\/Makefile$/ );
|
|
|
|
# Nor about Change Logs
|
|
return if ( $file =~ /\/changelog$/i );
|
|
|
|
# Nor about git files
|
|
return if ( $file =~ /^\.\/\.git\// );
|
|
|
|
# Nor about dot files
|
|
return if ( $file =~ m{/\.[^/]+$} );
|
|
|
|
# `modules.sh` is a false positive.
|
|
return if ( $file =~ /modules.sh$/ );
|
|
|
|
# `tests/hook-tls.t` is too.
|
|
return if ( $file =~ /hook-tls.t$/ );
|
|
|
|
# Ignore cover_db files
|
|
return if ( $file =~ /^\.\/cover_db\// );
|
|
|
|
# See if it is a perl file.
|
|
my $isPerl = 0;
|
|
|
|
# Read the file.
|
|
open( INPUT, "<", $file );
|
|
foreach my $line ( <INPUT> )
|
|
{
|
|
if ( $line =~ /\/usr\/bin\/perl/ )
|
|
{
|
|
$isPerl = 1;
|
|
}
|
|
}
|
|
close( INPUT );
|
|
|
|
#
|
|
# Return if it wasn't a perl file.
|
|
#
|
|
return if ( ! $isPerl );
|
|
|
|
#
|
|
# Now run 'perl -c $file' to see if we pass the syntax
|
|
# check. We add a couple of parameters to make sure we're
|
|
# really OK.
|
|
#
|
|
# use strict "vars";
|
|
# use strict "subs";
|
|
#
|
|
my $retval = system( "perl -Mstrict=subs -Mstrict=vars -Ilib -c $file 2>/dev/null >/dev/null" );
|
|
|
|
is( $retval, 0, "Perl file passes our syntax check: $file" );
|
|
}
|