mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
88ae190aca
Also enable cppcheck in both C and C++ mode.
40 lines
1.2 KiB
Bash
Executable File
40 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
SKIP_GTEST=1
|
|
|
|
. other/analysis/gen-file.sh
|
|
|
|
set -e
|
|
|
|
CPPCHECK=("--enable=all")
|
|
CPPCHECK+=("--inconclusive")
|
|
CPPCHECK+=("--error-exitcode=1")
|
|
# Used for VLA.
|
|
CPPCHECK+=("--suppress=allocaCalled")
|
|
# False positives in switch statements.
|
|
CPPCHECK+=("--suppress=knownConditionTrueFalse")
|
|
# Cppcheck does not need standard library headers to get proper results.
|
|
CPPCHECK+=("--suppress=missingIncludeSystem")
|
|
# TODO(iphydf): Maybe fix?
|
|
CPPCHECK+=("--suppress=signConversion")
|
|
# TODO(iphydf): Fixed in the toxav refactor PR.
|
|
CPPCHECK+=("--suppress=redundantAssignment")
|
|
# We're a library. This only works on whole programs.
|
|
CPPCHECK_C=("--suppress=unusedFunction")
|
|
|
|
# We actually write C code.
|
|
CPPCHECK_CXX=("--suppress=cstyleCast")
|
|
# False positive in auto_tests.
|
|
CPPCHECK_CXX+=("--suppress=shadowArgument")
|
|
CPPCHECK_CXX+=("--suppress=shadowFunction")
|
|
# Range-for is fine.
|
|
CPPCHECK_CXX+=("--suppress=useStlAlgorithm")
|
|
|
|
run() {
|
|
echo "Running cppcheck in variant '$*'"
|
|
cppcheck "${CPPCHECK[@]}" "${CPPCHECK_C[@]}" tox*/*.[ch] tox*/*/*.[ch] "${CPPFLAGS[@]}" "$@"
|
|
cppcheck "${CPPCHECK[@]}" "${CPPCHECK_CXX[@]}" amalgamation.cc "${CPPFLAGS[@]}" "$@"
|
|
}
|
|
|
|
. other/analysis/variants.sh
|