mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
e7bc611dac
Cleaned up some of the warnings it gives. Disabled the ones that are less useful for us at this time.
35 lines
953 B
Bash
Executable File
35 lines
953 B
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")
|
|
# We actually write C code.
|
|
CPPCHECK+=("--suppress=cstyleCast")
|
|
# Used to enable/disable parts using if with constant condition.
|
|
CPPCHECK+=("--suppress=knownConditionTrueFalse")
|
|
# Cppcheck does not need standard library headers to get proper results.
|
|
CPPCHECK+=("--suppress=missingIncludeSystem")
|
|
# Range-for is fine.
|
|
CPPCHECK+=("--suppress=useStlAlgorithm")
|
|
# TODO(iphydf): Maybe fix?
|
|
CPPCHECK+=("--suppress=shadowArgument")
|
|
CPPCHECK+=("--suppress=shadowFunction")
|
|
CPPCHECK+=("--suppress=signConversion")
|
|
# TODO(iphydf): Fixed in the toxav refactor PR.
|
|
CPPCHECK+=("--suppress=redundantAssignment")
|
|
|
|
run() {
|
|
echo "Running cppcheck in variant '$*'"
|
|
cppcheck "${CPPCHECK[@]}" amalgamation.cc "${CPPFLAGS[@]}" "$@"
|
|
}
|
|
|
|
. other/analysis/variants.sh
|