p2pool/cppcheck/run.sh

8 lines
477 B
Bash
Raw Normal View History

2021-09-02 10:29:50 +00:00
#!/bin/bash
2022-05-26 16:20:29 +00:00
../cppcheck-main/cppcheck ../src -DSIZE_MAX=UINT64_MAX -DRAPIDJSON_ENDIAN=RAPIDJSON_LITTLEENDIAN --platform=unix64 --std=c++14 --enable=all --inconclusive --inline-suppr --template="{file}:{line}:{id}{inconclusive: INCONCLUSIVE} {message}" --includes-file=includes.txt --suppressions-list=suppressions.txt --output-file=errors_full.txt
grep -v 'external' errors_full.txt > errors_filtered.txt
2021-09-05 10:51:20 +00:00
if [ -s errors_filtered.txt ]; then
cat errors_filtered.txt
exit 1
fi