Skip to content

Commit

Permalink
dist: run cppcheck with only one job (triage RIOT-OS#2089)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hinnerk van Bruinehsen committed Nov 27, 2014
1 parent ea77608 commit ed9834c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dist/tools/cppcheck/check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,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}

0 comments on commit ed9834c

Please sign in to comment.