From ff3885c4a15b983210995d3d98aba70019e792e4 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Tue, 14 Feb 2017 00:54:35 +0300 Subject: [PATCH] Travis CI: Add source check by cppcheck --- .travis.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5566393..3b74e6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,7 @@ env: CONF_ASSERTIONS=--enable-assertions - CONF_GCOV=--enable-gcov - CSA_CHECK=true + CPPCHECK=true matrix: exclude: @@ -25,7 +26,7 @@ matrix: - compiler: clang env: CONF_GCOV=--enable-gcov - compiler: clang - env: CSA_CHECK=true + env: CSA_CHECK=true CPPCHECK=true sudo: required @@ -39,13 +40,17 @@ before_install: CONF_SHARED=--enable-shared; CFLAGS_EXTRA="-march=native -DDEBUG_RUN_ONE_TEST -DVERBOSE"; fi + - if [[ "$CPPCHECK" == true ]]; then + git clone --depth=3 https://github.com/danmar/cppcheck.git -b master; + make --directory cppcheck -j CXXFLAGS="-O3 -march=native -DNDEBUG"; + fi install: - ./autogen.sh script: - ./configure $CONF_ASSERTIONS $CONF_GCOV $CONF_SHARED --enable-werror - - if [[ "$CSA_CHECK" == true ]]; then + - if [[ "$CSA_CHECK" == true || "$CPPCHECK" == true ]]; then make --directory tests list_atomic.c test_atomic_include.h; else make -j check CFLAGS_EXTRA="$CFLAGS_EXTRA $CFLAGS_EXTRA_M"; @@ -55,6 +60,15 @@ script: clang --analyze -Xanalyzer -analyzer-output=text -Werror -I src -DAO_TRACE_MALLOC -DVERBOSE tests/*.c src/*.c; fi + - if [[ "$CPPCHECK" == true ]]; then + cppcheck/cppcheck -f -q --error-exitcode=2 -j16 -Ulong -DCPPCHECK -I src + --enable=information,performance,portability,style,warning + tests/*.c src/*.c; + fi + - if [[ "$CPPCHECK" == true ]]; then + cppcheck/cppcheck -f -q --error-exitcode=2 -Ulong -DAO_TEST_EMULATION + -DCPPCHECK -I src --enable=unusedFunction tests/*.c src/*.c; + fi after_success: - if [[ "$CONF_GCOV" == --en* ]]; then -- 2.40.0