summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdullah Sowayan <sowayan@users.noreply.github.com>2007-08-14 13:51:59 +0000
committerAbdullah Sowayan <sowayan@users.noreply.github.com>2007-08-14 13:51:59 +0000
commit9d29a887cde2c43ba8ad343fe34dacca41c53e59 (patch)
treec66463e910a2e43d80efeb172d957173441ea3cc
parentb04c25e26af0e6a341c94bf76eace3b55b6345a4 (diff)
downloadATCD-9d29a887cde2c43ba8ad343fe34dacca41c53e59.tar.gz
Tue Aug 14 13:48:56 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
-rw-r--r--ACE/ChangeLog9
-rwxr-xr-xACE/bin/fuzz.pl37
2 files changed, 42 insertions, 4 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 29b6a6b8b9e..55664900f77 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,12 @@
+Tue Aug 14 13:48:56 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
+
+ * bin/fuzz.pl:
+ Enabled the Check_for_tab test. The check_for_tab test now will
+ only check the core of ACE/TAO for tabs. This will prevent the
+ introduction of new tabs to the core of ACE/TAO. When we remove
+ tabs from other directories we will enable checks for those
+ directories.
+
Tue Aug 14 08:46:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Log_Msg.cpp:
diff --git a/ACE/bin/fuzz.pl b/ACE/bin/fuzz.pl
index 309fd104420..32ccc659ec5 100755
--- a/ACE/bin/fuzz.pl
+++ b/ACE/bin/fuzz.pl
@@ -303,14 +303,43 @@ sub check_for_tab ()
if (/FUZZ\: enable check_for_tab/) {
$disable = 0;
}
- if ($disable == 0 and m/^\s*\t/) {
+ if ($disable == 0 and /\t/) {
+ # The following directories are infested
+ # with tabs. When don't check these
+ # directories for now to enable detection
+ # of new tabs introduced in the core
+ # of ACE/TAO/CIAO
+ if (($file =~ /(ACE)*.*tests/i) ||
+ ($file =~ /(ACE)*.*performance-tests/i) ||
+ ($file =~ /(ACE)*.*protocols/i) ||
+ ($file =~ /(ACE)*.*netsvcs/i) ||
+ ($file =~ /(ACE)*.*examples/i) ||
+ ($file =~ /(ACE)*.*contrib/i) ||
+ ($file =~ /(ACE)*.*ASNMP/i) ||
+ ($file =~ /(ACE)*.*apps/i) ||
+ ($file =~ /(ACE)*.*Kokyu/i) ||
+ ($file =~ /(ACE)*.*ACEXML/i) ||
+ ($file =~ /(TAO)*.*tests/i) ||
+ ($file =~ /(TAO)*.*utils/i) ||
+ ($file =~ /(TAO)*.*TAO_IDL/i) ||
+ ($file =~ /(TAO)*.*orbsvcs/i) ||
+ ($file =~ /(TAO)*.*docs/i) ||
+ ($file =~ /(TAO)*.*tools/i) ||
+ ($file =~ /(TAO)*.*performance-tests/i) ||
+ ($file =~ /(TAO)*.*examples/i) ||
+ ($file =~ /(CIAO).*/i)) {
+ next ITERATION;
+ }
+
# for now, we don't want to indicate
# each occurance of tab in a file,
# we just want to indicate once that
# tabs exist in a file.
# print_error ("$file:$.: tab found");
- print_error ("$file: tab found");
- next ITERATION;
+ #print_error ("$file: tab found");
+ #next ITERATION;
+
+ print_error ("$file:$.: found tab");
}
}
close (FILE);
@@ -1725,7 +1754,7 @@ check_for_makefile_variable () if ($opt_l >= 1);
check_for_inline_in_cpp () if ($opt_l >= 2);
check_for_id_string () if ($opt_l >= 1);
check_for_newline () if ($opt_l >= 1);
-check_for_tab () if ($opt_l >= 6);
+check_for_tab () if ($opt_l >= 1);
check_for_lack_ACE_OS () if ($opt_l >= 10);
check_for_exception_spec () if ($opt_l >= 1);
check_for_NULL () if ($opt_l >= 1);