cppcheck/test
Daniel Marjamäki b8e77c8005 valueflow: fix for ?:. the condition result is not a result of the ?. 2015-07-04 11:17:38 +02:00
..
cfg
CMakeLists.txt Add CMake files 2015-02-13 19:00:14 +01:00
options.cpp
options.h
redirect.h
test.cxx
test.pro Don't include tinyxml from both lib.pri and test.pro 2013-08-19 19:44:29 +04:00
test64bit.cpp
testassert.cpp Refactorized testrunner: Create std::string only where necessary 2015-03-15 12:36:40 +01:00
testautovariables.cpp Fixed #6506 (Properly detect calls to the deallocating free() function) 2015-06-20 21:00:54 +02:00
testbool.cpp Ticket #6665 (dupe of #6588): Added test case. 2015-06-05 23:44:03 +02:00
testboost.cpp
testbufferoverrun.cpp negative array size: fixed noise when array is not vla 2015-07-04 09:42:42 +02:00
testcharvar.cpp Refactorization: Moved declaration of errout, ... to testsuite.h, uniformized style 2015-03-11 22:54:43 +01:00
testclass.cpp #6298 stack overflow in Scope::findFunctionInBase (endless recursion). Fix handling of circular class hierarchy 2015-07-01 00:04:01 +02:00
testcmdlineparser.cpp
testcondition.cpp Remove some code checking for invalid class hierarchy which got obsolete since 480a5672b0. Run astyle 2015-07-01 07:50:13 +02:00
testconstructors.cpp
testcppcheck.cpp Refactorization: Moved declaration of errout, ... to testsuite.h, uniformized style 2015-03-11 22:54:43 +01:00
testerrorlogger.cpp #6431 Invalid XML created - Invalid encoding of string literal. Partial fix: ensure the short message string is also processed to avoid problems with non-terminated string. 2015-06-18 21:16:25 +02:00
testexceptionsafety.cpp
testfilelister.cpp
testfiles.pri Refactoring to address some issues from #5895 (handling of unsigned numbers). Also adding a TODO testcase since the real issue (FP) is still not fixed 2015-06-13 18:08:13 +02:00
testgarbage.cpp #6807 segmentation fault (invalid code) in Tokenizer::simplifyTypedef. #6808 segmentation fault (invalid code) in Tokenizer::simplifyTypedef. Throw InternalError on garbage code 2015-07-01 16:31:49 +02:00
testincompletestatement.cpp Refactorization: Moved declaration of errout, ... to testsuite.h, uniformized style 2015-03-11 22:54:43 +01:00
testinternal.cpp
testio.cpp
testleakautovar.cpp Refactoring: Better distinguish between C and C++ in a few checks. 2015-06-28 16:49:16 +02:00
testlibrary.cpp Refactoring: Expose some previously local functions to public and add Tokenizer as argument to distinguish between C and C++ code (e.g. in isSameExpression). 2015-06-28 12:08:36 +02:00
testmathlib.cpp Corrections for non-Microsoft compilers 2015-06-28 12:34:08 +02:00
testmemleak.cpp Fix platform-dependent test result, formatting and crash in whole program analysis 2015-06-28 17:54:48 +02:00
testnonreentrantfunctions.cpp
testnullpointer.cpp
testobsolescentfunctions.cpp
testoptions.cpp Refactorization: Moved declaration of errout, ... to testsuite.h, uniformized style 2015-03-11 22:54:43 +01:00
testother.cpp Remove some code checking for invalid class hierarchy which got obsolete since 480a5672b0. Run astyle 2015-07-01 07:50:13 +02:00
testpath.cpp
testpathmatch.cpp
testpostfixoperator.cpp
testpreprocessor.cpp
testrunner.cpp
testrunner.vcxproj Add new test file: testtokenlist.cpp to testrunner 2015-06-16 20:30:09 +02:00
testrunner.vcxproj.filters Add new test file: testtokenlist.cpp to testrunner 2015-06-16 20:30:09 +02:00
testsamples.cpp
testsimplifytemplate.cpp
testsimplifytokens.cpp Refactoring: Allow TemplateSimplifier to throw InternalErrors by itself. 2015-06-23 20:53:57 +02:00
testsimplifytypedef.cpp Fixed #6378 (valueFlowForward: decrement not handled) 2015-05-02 17:30:09 +02:00
testsizeof.cpp
teststl.cpp #6510 False positive performance warning for std::list::size(). Fix this and other similar false positives. Refactoring of Variable::isStlType(), use fail-safe std::set instead of plain array. Run astyle 2015-05-17 20:02:41 +02:00
teststring.cpp stringLiteralWrite: Updated error message 2015-06-05 14:34:13 +02:00
testsuite.cpp testrunner: revert changes to avoid compiler warnings 2015-07-01 19:15:27 +02:00
testsuite.h testrunner: revert changes to avoid compiler warnings 2015-07-01 19:15:27 +02:00
testsuppressions.cpp Refactorization: Moved declaration of errout, ... to testsuite.h, uniformized style 2015-03-11 22:54:43 +01:00
testsymboldatabase.cpp Remove some code checking for invalid class hierarchy which got obsolete since 480a5672b0. Run astyle 2015-07-01 07:50:13 +02:00
testthreadexecutor.cpp Refactorization: Moved declaration of errout, ... to testsuite.h, uniformized style 2015-03-11 22:54:43 +01:00
testtimer.cpp Refactorization: Moved declaration of errout, ... to testsuite.h, uniformized style 2015-03-11 22:54:43 +01:00
testtoken.cpp Token::strValue: fixed handling of backslash 2015-06-07 11:25:33 +02:00
testtokenize.cpp Fixed #6752 (wrong AST when there is lambda function) 2015-06-17 19:32:44 +02:00
testtokenlist.cpp Refactoring (use const std::set for strings). Omit some matching for C++ stuff within C code. 2015-06-17 22:28:15 +02:00
testtype.cpp updated style messages 2015-06-01 21:22:47 +02:00
testuninitvar.cpp Fixed #4760 (false negative: (error) usage of uninitialized variable (struct member)) 2015-06-19 18:21:46 +02:00
testunusedfunctions.cpp 2nd attempt to fix crash in CheckUnusedFunctions::check. CheckBufferOverrun::checkBufferAllocatedWithStrlen: Don't check for 'new' in C code. 2015-06-28 18:34:09 +02:00
testunusedprivfunc.cpp #6298 stack overflow in Scope::findFunctionInBase (endless recursion). Fix handling of circular class hierarchy 2015-07-01 00:04:01 +02:00
testunusedvar.cpp
testutils.h
testvaarg.cpp Refactorization: Moved declaration of errout, ... to testsuite.h, uniformized style 2015-03-11 22:54:43 +01:00
testvalueflow.cpp valueflow: fix for ?:. the condition result is not a result of the ?. 2015-07-04 11:17:38 +02:00
testvarid.cpp