summaryrefslogtreecommitdiff
path: root/.travis.sh
diff options
context:
space:
mode:
Diffstat (limited to '.travis.sh')
-rwxr-xr-x.travis.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/.travis.sh b/.travis.sh
index c9e57d01..0b6bec15 100755
--- a/.travis.sh
+++ b/.travis.sh
@@ -59,20 +59,6 @@ elif [[ ${MODE} = cmake-oos ]]; then
make VERBOSE=1 CTEST_OUTPUT_ON_FAILURE=1 all test
make DESTDIR="${PWD}"/ROOT install
find ROOT -printf "%P\n" | sort
-elif [[ ${MODE} = cppcheck ]]; then
- cppcheck --version
- find_args=(
- -type f \(
- -name \*.cpp
- -o -name \*.c
- \)
- -not \( # Exclude .c files that are merely included by other files
- -name xmltok_ns.c
- -o -name xmltok_impl.c
- \)
- -exec cppcheck --quiet --error-exitcode=1 --force --suppress=objectIndex {} +
- )
- find "${find_args[@]}"
elif [[ ${MODE} = clang-format ]]; then
./apply-clang-format.sh
git diff --exit-code