add and change NEWS for 2.8.0 release
[parrot.git] / t / codingstd / tabs.t
blob756b82ce12e53d10baad80d46425db645b719679
1 #! perl
2 # Copyright (C) 2006-2009, Parrot Foundation.
3 # $Id$
5 use strict;
6 use warnings;
7 use lib qw( . lib ../lib ../../lib );
8 use Test::More tests => 1;
9 use Parrot::Distribution;
11 =head1 NAME
13 t/codingstd/tabs.t - checks for tab indents in C source and headers
15 =head1 SYNOPSIS
17     # test all files
18     % prove t/codingstd/tabs.t
20     # test specific files
21     % perl t/codingstd/tabs.t src/foo.c include/parrot/bar.h
23 =head1 DESCRIPTION
25 Checks that files do not use tabs to indent.
27 =head1 SEE ALSO
29 L<docs/pdds/pdd07_codingstd.pod>
31 =cut
33 my $DIST = Parrot::Distribution->new;
34 my @files = @ARGV ? <@ARGV> : $DIST->get_c_language_files();
35 my @tabs;
37 foreach my $file (@files) {
39     # if we have command line arguments, the file is the full path
40     # otherwise, use the relevant Parrot:: path method
41     my $path = @ARGV ? $file : $file->path;
43     open my $fh, '<', $path
44         or die "Cannot open '$path' for reading: $!\n";
46     my $line = 1;
48     # search each line for leading tabs
49     while (<$fh>) {
50         if ( $_ =~ m/^ *\t/ ) {
51             push @tabs => "$path:$line\n";
52         }
54         $line++;
55     }
56     close $fh;
59 ## L<PDD07/Code Formatting/"Indentation must consist only of spaces">
60 ok( !scalar(@tabs), "tabs in leading whitespace" )
61     or
62     diag( "Found tab in leading whitespace " . scalar(@tabs) . " instances.  Lines found:\n@tabs" );
64 # Local Variables:
65 #   mode: cperl
66 #   cperl-indent-level: 4
67 #   fill-column: 100
68 # End:
69 # vim: expandtab shiftwidth=4: