p2pool/cppcheck/run.sh

8 lines
538 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
2022-05-26 10:20:29 -06:00
grep -v 'external' errors_full.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