diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2024-05-04 09:03:13 +0000 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2024-05-17 12:09:18 +0200 |
commit | bfb74193db0e172bb1db5fc837a4b1ee4688259f (patch) | |
tree | 3f6230564568451c0e4c5357c37f4cc47cdab195 /tests | |
parent | 9b3eb0bcb6bc6347874b79cdbf2a5c45e2f3c314 (diff) | |
download | ayatana-indicator-display-bfb74193db0e172bb1db5fc837a4b1ee4688259f.tar.gz ayatana-indicator-display-bfb74193db0e172bb1db5fc837a4b1ee4688259f.tar.bz2 ayatana-indicator-display-bfb74193db0e172bb1db5fc837a4b1ee4688259f.zip |
cppcheck: Run with --check-level=exhaustive.
Resolves
1: <BUILDDIR>/ayatana-indicator-display/src/service.cpp:0:0: information:
Limiting analysis of branches. Use --check-level=exhaustive to analyze all
branches. [normalCheckLevelMaxBranches]
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 531f58b..bdc074f 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -28,7 +28,7 @@ endif() add_compile_options(${CXX_WARNING_ARGS}) -add_test(cppcheck cppcheck --enable=all -USCHEMA_DIR --error-exitcode=2 --inline-suppr --library=qt -I${CMAKE_SOURCE_DIR} -i${CMAKE_SOURCE_DIR}/tests/utils/qmain.cpp -i${CMAKE_SOURCE_DIR}/tests/gmock ${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/tests --suppress=missingIncludeSystem --suppress=uninitDerivedMemberVar --suppress=unmatchedSuppression --suppress=constParameter --suppress=constParameterCallback --suppress=unusedFunction --suppress=uselessOverride) +add_test(cppcheck cppcheck --enable=all -USCHEMA_DIR --check-level=exhaustive --error-exitcode=2 --inline-suppr --library=qt -I${CMAKE_SOURCE_DIR} -i${CMAKE_SOURCE_DIR}/tests/utils/qmain.cpp -i${CMAKE_SOURCE_DIR}/tests/gmock ${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/tests --suppress=missingIncludeSystem --suppress=uninitDerivedMemberVar --suppress=unmatchedSuppression --suppress=constParameter --suppress=constParameterCallback --suppress=unusedFunction --suppress=uselessOverride) add_subdirectory (unit) |