Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoronqtam <vik.kirilov@gmail.com>2017-05-07 22:17:19 +0300
committeronqtam <vik.kirilov@gmail.com>2017-05-16 00:22:24 +0300
commit86c8d95befe7dfb92922d9fdc4cf7e4e77bcfb5a (patch)
treeeec248f33644bb1fe5ba362fa5bf539964cc010d /.travis.yml
parent9f58c9c8f34501d8ba5cb9e3f11a29970fc7e0af (diff)
come on... using https://lint.travis-ci.org/ to validate parts of my file - not sure what the problem was here...
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index ebadcf44..1e305229 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -399,8 +399,9 @@ script:
echo -e " CAPTURE(a);" >> doctest.cpp
echo -e " CHECK(a == 6);" >> doctest.cpp
echo -e "}" >> doctest.cpp
+
+ cppcheck doctest.cpp --enable=all --suppress=unmatchedSuppression --suppress=missingIncludeSystem --suppress=unusedFunction --suppress=functionConst --inline-suppr --platform=unix64 --inconclusive --std=posix --inconclusive -v --error-exitcode=1 --template "{file}({line}): {severity} ({id}): {message}" -DDOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
fi
- - if [[ "${STATIC_CODE_ANALYSIS}" = "true" ]]; then cppcheck doctest.cpp --enable=all --suppress=unmatchedSuppression --suppress=missingIncludeSystem --suppress=unusedFunction --suppress=functionConst --inline-suppr --platform=unix64 --inconclusive --std=posix --inconclusive -v --error-exitcode=1 --template "{file}({line}): {severity} ({id}): {message}" -DDOCTEST_CONFIG_IMPLEMENT_WITH_MAIN ; fi
# clang-tidy
- if [[ "${STATIC_CODE_ANALYSIS}" = "true" ]]; then cd scripts/playground ; fi