cppcheck/test
Dmitry-Me cdf68353ae Merge pull request #769 from Dmitry-Me/testNoWarningWhenCharIndexInRange
Test for signed char index in positive values range
2016-01-31 13:43:18 +03:00
..
cfg Correct posix.cfg to avoid false positives. Fix runtests.sh 2016-01-15 00:11:48 +01:00
CMakeLists.txt Added testrunner test to cmake. #7098 2015-11-26 21:01:07 +01:00
options.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
options.h Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
redirect.h Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
test.cxx test: tabs to spaces, remove trailing spaces and extra empty lines at the end of files 2012-09-17 13:51:40 +02:00
test64bit.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testassert.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testastutils.cpp Fixed #7144 (Tokenizer::isScopeNoReturn: handling '{ { throw new string(..); } }') 2016-01-18 15:39:20 +01:00
testautovariables.cpp Fixed false positive returnLocalVariable (#7180) 2016-01-30 20:18:12 +01:00
testbool.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testboost.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testbufferoverrun.cpp Fixed #7209 (False positive: Array index used before limits check reported in sizeof) 2016-01-24 14:06:02 +01:00
testcharvar.cpp Test for signed char index in positive values range 2016-01-29 11:09:25 +03:00
testclass.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testcmdlineparser.cpp Settings: Remove '_' prefix for public member variables 2016-01-03 16:18:17 +01:00
testcondition.cpp CheckCondition::alwaysTrueFalse: Move to normal checking to catch more problems 2016-01-26 10:08:21 +01:00
testconstructors.cpp Fixed false positive uninitMemberVar with member function of template (#7205) 2016-01-30 20:18:13 +01:00
testcppcheck.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testerrorlogger.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testexceptionsafety.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testfilelister.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testfiles.pri Fix TestAstUtils 2016-01-16 19:08:51 +01:00
testfunctions.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testgarbage.cpp Fixed crash on garbage code (#7356) 2016-01-31 10:25:09 +01:00
testincompletestatement.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testinternal.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testio.cpp Fixed false positive useClosedFile when noreturn function is called (#7359) 2016-01-31 10:39:35 +01:00
testleakautovar.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testlibrary.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testmathlib.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testmemleak.cpp Fixed false positive in CheckMemoryLeakStructMember when returning a member that has been allocated (#7302). 2016-01-31 10:10:48 +01:00
testnullpointer.cpp Better distinguishing between possible and known null pointer dereferenciations (#7157) 2016-01-30 20:43:40 +01:00
testoptions.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testother.cpp Fixed #7243 (False positive unknownEvaluationOrder - comma operator inside while-clause) 2016-01-18 16:10:51 +01:00
testpath.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testpathmatch.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testpostfixoperator.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testpreprocessor.cpp Preprocessor directives for addons 2016-01-15 12:36:35 +01:00
testrunner.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testrunner.vcxproj Replaced CheckNonReentrantFunctions and CheckObsoleteFunctions by generic CheckFunctions which is based on Library (#6529) 2015-11-22 09:18:07 +01:00
testrunner.vcxproj.filters Replaced CheckNonReentrantFunctions and CheckObsoleteFunctions by generic CheckFunctions which is based on Library (#6529) 2015-11-22 09:18:07 +01:00
testsamples.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testsimplifytemplate.cpp TemplateSimplifier: One more fix for #3130. Restored max recursion count to 100 and improve pattern for reference template instantiations instead. 2016-01-30 11:22:44 +01:00
testsimplifytokens.cpp Fixed #7276 (VarId: Missing varId in template class constructor initialization lists) 2016-01-10 22:10:49 +01:00
testsimplifytypedef.cpp Remove unnecessaryForwardDeclaration check. It had false positives (e.g. #3663), was implemented in the Tokenizer and of little value. 2016-01-02 19:14:03 +01:00
testsizeof.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
teststl.cpp Fixed #7349 (checker 'inefficient find()' unintentionally used for find_first_of()) 2016-01-29 08:55:46 +01:00
teststring.cpp CheckString: Fix FP when macros are used. 2016-01-13 20:32:40 +01:00
testsuite.cpp Ticket #7270 segmentation fault (invalid code) in Tokenizer::simplifyLabelsCaseDefault. include fix for cygwin 2016-01-08 11:59:02 +01:00
testsuite.h Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testsuppressions.cpp Settings: Remove '_' prefix for public member variables 2016-01-03 16:18:17 +01:00
testsymboldatabase.cpp Fixed #4698 (False positive: Uninitialized member variable warning with confusing namespaces) 2016-01-30 14:04:48 +01:00
testthreadexecutor.cpp Settings: Remove '_' prefix for public member variables 2016-01-03 16:18:17 +01:00
testtimer.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testtoken.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testtokenize.cpp Fixed #7347 (AST: wrong ast when template variable is declared and initiailized in if 'if (A::B<C> abc = 123)') 2016-01-26 10:40:44 +01:00
testtokenlist.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testtype.cpp Fixed #7266 (False positive shiftTooManyBits with macros) 2016-01-10 20:44:52 +01:00
testuninitvar.cpp Fixed #5503 (FP: Uninitialized variable - initialize in in if and else branch) 2016-01-30 20:48:28 +01:00
testunusedfunctions.cpp Merge pull request #745 from lanurmi/2016_ad 2016-01-01 22:57:19 +01:00
testunusedprivfunc.cpp Merge pull request #745 from lanurmi/2016_ad 2016-01-01 22:57:19 +01:00
testunusedvar.cpp Support function pointers in CheckUnusedVar::checkFunctionVariableUsage_iterateScopes() (#7194) 2016-01-30 20:59:55 +01:00
testutils.h Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testvaarg.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
testvalueflow.cpp Fixed #7363 (valueflowOppositeCondition - if (size1 > size2) ... else if (size1 < size2) ...) 2016-01-30 22:13:03 +01:00
testvarid.cpp VarId: Set varid for template parameters (#7046) 2016-01-31 11:07:30 +01:00