mirror of
https://github.com/SChernykh/p2pool.git
synced 2024-11-16 15:57:39 +00:00
7 lines
477 B
Bash
Executable file
7 lines
477 B
Bash
Executable file
#!/bin/bash
|
|
../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
|
|
if [ -s errors_filtered.txt ]; then
|
|
cat errors_filtered.txt
|
|
exit 1
|
|
fi
|