Skip to content

Commit

Permalink
[codingstd] add check for PIR files.
Browse files Browse the repository at this point in the history
See TT #554

git-svn-id: https://svn.parrot.org/parrot/trunk@38114 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
fperrad committed Apr 15, 2009
1 parent c123d6d commit e95c8ef
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions t/codingstd/svn_id.t
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ L<docs/pdds/pdd07_codingstd.pod>

my $DIST = Parrot::Distribution->new;

my @c_files = $DIST->get_c_language_files();
my @perl_files = $DIST->get_perl_language_files();
my @make_files = $DIST->get_make_language_files();
my @all_files = ( @c_files, @perl_files, @make_files );

my @files = @ARGV ? <@ARGV> : @all_files;
my @files = @ARGV ? <@ARGV> : (
$DIST->get_c_language_files(),
$DIST->get_make_language_files(),
$DIST->get_perl_language_files(),
$DIST->get_pir_language_files(),
);
my @no_id_files;

foreach my $file (@files) {
Expand Down

0 comments on commit e95c8ef

Please sign in to comment.