summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2016-11-30 18:12:13 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2016-11-30 18:12:13 +0100
commit0050aa1d8e010452160928c1de24c8ed8e31ba84 (patch)
treedb9a35adc55a2cc58efc268f866828bb03ac3b5b
parent1d7d9b2968e35a5fb83c74ee0c2e6fd998a430e3 (diff)
downloadATCD-0050aa1d8e010452160928c1de24c8ed8e31ba84.tar.gz
Check for empty rb/erb files
* ACE/bin/fuzz.pl:
-rwxr-xr-xACE/bin/fuzz.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/bin/fuzz.pl b/ACE/bin/fuzz.pl
index eba916638ea..0d7ced3a25f 100755
--- a/ACE/bin/fuzz.pl
+++ b/ACE/bin/fuzz.pl
@@ -1253,7 +1253,7 @@ sub check_for_empty_files ()
return if is_suppressed ();
print "Running empty file test\n";
- foreach $file (@files_inl, @files_cpp) {
+ foreach $file (@files_inl, @files_cpp, @files_rb) {
my $found_non_empty_line = 0;
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;