Skip to content
Snippets Groups Projects
Commit 00f31b09 authored by Ken Martin's avatar Ken Martin
Browse files

suppress cppcheck issues in Testing/Cxx so we can focus on impl

cppcheck warnings in tests are hiding implementation issues.
For now turn of cppcheck issues in the test code so we can
focus on any issues in the VTK implementation code.
parent bac9d98f
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,14 @@
// If cppcheck itself crashes, well, that's its problem, ignore that.
cppcheckError
// Tests contain lots of hardcoded values, etc. They overwhelm reporting of issues
// in the implementation files. So for now suppress the test's issues so we can focus
// on implementation issues
constArgument:*/Testing/Cxx/*
duplicateCondition:*/Testing/Cxx/*
knownConditionTrueFalse:*/Testing/Cxx/*
unreadVariable:*/Testing/Cxx/*
// When analyzing different define possibilities, it will sometimes hit a #error line
preprocessorErrorDirective
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment