From 1ec3c0a57a174f6706277c06455a63156f970795 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Tue, 25 Apr 2017 19:31:02 +0200 Subject: [PATCH] Revert "dist: cppcheck: switch back to 8 jobs" This reverts commit ec97a94626baa8a8843a0aa00e17213fac08696f. (The commit seems to cause trouble. Furthermore, there's no reference to either the issue or how it was solved in the original commit message). --- 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 0fd0a9b23..e33d97d53 100755 --- a/dist/tools/cppcheck/check.sh +++ b/dist/tools/cppcheck/check.sh @@ -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}