aboutsummaryrefslogtreecommitdiffstats
path: root/tools/cppcheck
AgeCommit message (Collapse)AuthorFilesLines
2014-03-31Continue to remove $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^\# \$Id\$/,+1 d') (start with dash) Change-Id: Ia4b5a6c2302f6a531f6a86c1ec3a2f8205c8c2dd Reviewed-on: https://code.wireshark.org/review/881 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-04-28Specify to CppCheck that Wireshark code is C89, not the default C11.Evan Huus1-1/+1
svn path=/trunk/; revision=49083
2012-10-14Add verbose option to the cppcheck script.Evan Huus1-1/+2
svn path=/trunk/; revision=45542
2012-10-13Enhancements to the CppCheck script:Evan Huus1-11/+37
- make html output a flag (-h), instead of what happens when you specify no files - add flag (-j) for job count, like make et al. - add flag (-a) to ignore the suppressions file and report all issues - require /bin/bash instead of just /bin/sh in order to get arithmetic $(()) - add mode-lines svn path=/trunk/; revision=45520
2012-07-21Enhancements to the cppcheck script:Evan Huus1-16/+18
- Take command-line arguments of files to check. In this case make output GCC-like, as it's much more human-readable than the HTML. - If there are no arguments, provide HTML output for the entire current directory like before, for use with build-bot integration. - Don't hack with the CWD to try and get include-paths to work. Cppcheck will warn already if it can't find them, and since a lot of the checks still work in any case, a warning is more appropriate than an error or a hack. svn path=/trunk/; revision=43882
2012-07-18Add basic CppCheck configuration and runner.Evan Huus3-0/+68
Probably subject to change as it gets integrated into the build-bot. svn path=/trunk/; revision=43778