p2pool/cppcheck/run.sh

9 lines
608 B
Bash
Raw Normal View History

2021-09-02 04:29:50 -06:00
#!/bin/bash
2023-06-16 04:24:46 -06:00
../cppcheck-main/cppcheck --project=../build/compile_commands.json -DSIZE_MAX=UINT64_MAX -DRAPIDJSON_ENDIAN=RAPIDJSON_LITTLEENDIAN -D__SSE2__=1 --platform=unix64 --std=c++14 --enable=all --inconclusive --inline-suppr --template="{file}:{line}:{id}{inconclusive: INCONCLUSIVE} {message}" --suppressions-list=suppressions.txt --output-file=errors_full.txt --max-ctu-depth=3 --check-level=exhaustive
2023-12-20 09:30:35 -07:00
grep -v 'external' errors_full.txt > errors_filtered0.txt
grep -v ':checkersReport' errors_filtered0.txt > errors_filtered.txt
2021-09-05 04:51:20 -06:00
if [ -s errors_filtered.txt ]; then
cat errors_filtered.txt
exit 1
fi