summaryrefslogtreecommitdiff
path: root/ACE/bin/fuzz.pl
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2019-10-17 11:30:44 -0500
committerFred Hornsey <hornseyf@objectcomputing.com>2019-10-17 11:30:44 -0500
commitb6dfbe5321c2d6986a1373aa6d86c76ca7880505 (patch)
tree4d43839a12f2ef756c3e1a759bd1a3a0ff395206 /ACE/bin/fuzz.pl
parent8672cb250274508585c97c1f8fd3ed6effacfc5c (diff)
downloadATCD-b6dfbe5321c2d6986a1373aa6d86c76ca7880505.tar.gz
fuzz.pl: Disable check_include by default
Diffstat (limited to 'ACE/bin/fuzz.pl')
-rwxr-xr-xACE/bin/fuzz.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/ACE/bin/fuzz.pl b/ACE/bin/fuzz.pl
index a237f0ed59f..cbe752d84a6 100755
--- a/ACE/bin/fuzz.pl
+++ b/ACE/bin/fuzz.pl
@@ -2447,7 +2447,7 @@ if (!getopts ('cdx:hl:t:s:mv') || $opt_h) {
check_for_bad_ace_trace
check_for_changelog_errors
check_for_ptr_arith_t
- check_for_include
+ check_for_include (disabled by default)
check_for_non_bool_operators
check_for_long_file_names
check_for_refcountservantbase
@@ -2542,7 +2542,6 @@ check_for_absolute_ace_wrappers () if ($opt_l >= 3);
check_for_bad_ace_trace () if ($opt_l >= 4);
check_for_changelog_errors () if ($opt_l >= 4);
check_for_ptr_arith_t () if ($opt_l >= 4);
-check_for_include () if ($opt_l >= 5);
check_for_non_bool_operators () if ($opt_l > 2);
check_for_long_file_names () if ($opt_l >= 1);
check_for_improper_main_declaration () if ($opt_l >= 1);