-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhitespace.t
executable file
·43 lines (37 loc) · 1.34 KB
/
whitespace.t
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/perl
use strict;
use FindBin qw($Bin);
our @files;
BEGIN {
chdir "$Bin/.." or die;
my @exempted = qw(Makefile.am ChangeLog doc/Makefile.am README README.md compile_commands.json);
push(@exempted, glob("doc/*.xml"));
push(@exempted, glob("doc/*.full"));
push(@exempted, glob("doc/xml2rfc/*.xsl"));
push(@exempted, glob("m4/*backport*m4"));
push(@exempted, glob("*.orig"));
push(@exempted, glob(".*.swp"));
my %exempted_hash = map { $_ => 1 } @exempted;
my @stuff = split /\0/, `git ls-files -z -c -m -o --exclude-standard`;
@files = grep { ! $exempted_hash{$_} } @stuff;
# We won't find any files if git isn't installed. If git isn't
# installed, they're probably not doing any useful development, or
# at the very least am will clean up whitespace when we receive
# their patch.
unless (@files) {
use Test::More;
plan skip_all => "Skipping tests probably because you don't have git.";
exit 0;
}
}
use Test::More tests => scalar(@files);
foreach my $f (@files) {
open(my $fh, $f) or die "Cannot open file $f: $!";
my $before = do { local $/; <$fh>; };
close ($fh);
my $after = $before;
$after =~ s/\t/ /g;
$after =~ s/ +$//mg;
$after .= "\n" unless $after =~ /\n$/;
ok ($after eq $before, "$f (see devtools/clean-whitespace.pl)");
}