aboutsummaryrefslogtreecommitdiffstats
path: root/tools/checkAPIs.pl
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2008-07-23 11:36:27 +0000
committerBill Meier <wmeier@newsguy.com>2008-07-23 11:36:27 +0000
commitd35d95395ae63e95744c808829bb5ae1e5a6dd56 (patch)
tree42f65ea8651031a5ebfb826468a3c24e41e50a2a /tools/checkAPIs.pl
parentee1534f85162b3a57b1fb56de4ad1e7b88c6c01d (diff)
Disable value_string check for now.
Apparently the "regex which matches double-quoted strings" doesn't work with some versions of Perl (eg: 5.8.8) if the string contains a 'line-continuation' (\ folowed by a new-line). (This works for Perl 5.10.0). So: disable value_string check until I look into this further. svn path=/trunk/; revision=25802
Diffstat (limited to 'tools/checkAPIs.pl')
-rwxr-xr-xtools/checkAPIs.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/checkAPIs.pl b/tools/checkAPIs.pl
index 67d384dbac..913ab517fe 100755
--- a/tools/checkAPIs.pl
+++ b/tools/checkAPIs.pl
@@ -216,7 +216,7 @@ my $commentAndStringRegex = qr{(?:$DoubleQuotedStr|$SingleQuotedStr)|($CComment)
my $errorCount = 0;
# The default list, which can be expanded.
my @apiGroups = qw(prohibited deprecated);
-my $check_value_string_array_null_termination = 1; # default: enabled
+my $check_value_string_array_null_termination = 0; # default: disabled
my $debug_flag = 0;
my $result = GetOptions(