summaryrefslogtreecommitdiff
path: root/ACE/bin/fuzz.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/bin/fuzz.pl')
-rwxr-xr-xACE/bin/fuzz.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/ACE/bin/fuzz.pl b/ACE/bin/fuzz.pl
index 0d7ced3a25f..5053b0b6115 100755
--- a/ACE/bin/fuzz.pl
+++ b/ACE/bin/fuzz.pl
@@ -54,6 +54,7 @@ use PerlACE::Run_Test;
@files_doxygen = ();
@files_conf = ();
@files_rb = ();
+@files_features = ();
# To keep track of errors and warnings
$errors = 0;
@@ -187,6 +188,9 @@ sub store_file ($)
elsif ($name =~ /\.(rb|erb)$/i) {
push @files_rb, ($name);
}
+ elsif ($name =~ /\.features$/i) {
+ push @files_features, ($name);
+ }
elsif ($name =~ /\.vcproj$/i) {
push @files_vcproj, ($name);
}
@@ -296,7 +300,7 @@ sub check_for_id_string ()
print "Running \$Id\$ string check\n";
foreach $file (@files_cpp, @files_inl, @files_h, @files_mpc, @files_bor,
@files_gnu, @files_html, @files_idl, @files_pl,
- @files_cdp, @files_py, @files_conf, @files_generic) {
+ @files_cdp, @files_py, @files_conf, @files_generic, @files_features) {
my $found = 0;
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;