1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #6963 from kaspar030/revert_cppcheck_jobfix

dist: tools: revert "dist: cppcheck: switch back to 8 jobs"
This commit is contained in:
Martine Lenders 2017-04-25 20:01:19 +02:00 committed by GitHub
commit 45a5bb5978

View File

@ -53,6 +53,7 @@ if [ -z "${FILES}" ]; then
exit
fi
cppcheck --std=c99 --enable=style --force --error-exitcode=2 --quiet -j 8 \
# TODO: switch back to 8 jobs when/if cppcheck issue is resolved
cppcheck --std=c99 --enable=style --force --error-exitcode=2 --quiet -j 1 \
--template "{file}:{line}: {severity} ({id}): {message}" \
--inline-suppr ${DEFAULT_SUPPRESSIONS} ${@} ${FILES}