From 53530f76275df76406a9ce438a33df78c50d0948 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 17 Apr 2016 22:37:34 +0300 Subject: Add cpplint into ci scripts. Enable only rules what not giving false positives. --- tools/ci/jobs/cpplint.sh | 50 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100755 tools/ci/jobs/cpplint.sh (limited to 'tools') diff --git a/tools/ci/jobs/cpplint.sh b/tools/ci/jobs/cpplint.sh new file mode 100755 index 000000000..3824efe9d --- /dev/null +++ b/tools/ci/jobs/cpplint.sh @@ -0,0 +1,50 @@ +#!/bin/bash + +export LOGFILE=cpplint.log + +source ./tools/ci/scripts/init.sh + +aptget_install python wget + +rm cpplint.py +wget "https://raw.githubusercontent.com/google/styleguide/gh-pages/cpplint/cpplint.py" +chmod +x cpplint.py + +CHECKER="./cpplint.py --filter=\ +-build/include,\ +-whitespace/braces,-whitespace/operators,-runtime/references,\ +-runtime/threadsafe_fn,-readability/streams,\ +-runtime/rtti,\ +-whitespace/newline,-whitespace/labels,\ +-runtime/indentation_namespace,\ +-whitespace/indent,\ +-whitespace/parens,\ +-runtime/int,\ +-readability/todo,\ +-runtime/arrays,\ +-runtime/printf,\ +-whitespace/empty_loop_body,\ +-build/c++11,\ +-readability/fn_size,\ +-build/header_guard,\ +-readability/braces,\ +-legal/copyright,\ +-whitespace/semicolon,\ +-readability/namespace,\ +-readability/casting" + +find src -type f -name "*.cpp" -exec $CHECKER {} \; 2>${ERRFILE}2 +find src -type f -name "*.hpp" -exec $CHECKER {} \; 2>>${ERRFILE}2 +find src -type f -name "*.h" -exec $CHECKER {} \; 2>>${ERRFILE}2 +find src -type f -name "*.cc" -exec $CHECKER {} \; 2>>${ERRFILE}2 + +grep ": " ${ERRFILE}2 | \ +grep -v "debug_new" | \ +grep -v "sdl2gfx/SDL2" \ +>${ERRFILE} + +rm ${ERRFILE}2 + +run_check_warnings + +echo ok -- cgit v1.2.3-60-g2f50