From ed9834c7ff3b64f7df3201a77671a9bd666b856f Mon Sep 17 00:00:00 2001 From: Hinnerk van Bruinehsen Date: Thu, 27 Nov 2014 08:55:00 +0100 Subject: [PATCH] dist: run cppcheck with only one job (triage #2089) --- dist/tools/cppcheck/check.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dist/tools/cppcheck/check.sh b/dist/tools/cppcheck/check.sh index ffcb687ca7..9c2a63c173 100755 --- a/dist/tools/cppcheck/check.sh +++ b/dist/tools/cppcheck/check.sh @@ -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}