cppcheck/test
PKEuS 99a73fe1d3 Don't assign a varid to a variadic function 2013-03-05 08:32:52 -08:00
..
options.cpp
options.h
redirect.h
test.cxx
test.pro
test64bit.cpp Travis: Fixed false positive in lib/checkbufferoverrun. Ticket: #4486 2013-02-04 19:02:42 +01:00
testassignif.cpp Fixed #4470 (New check: redundant bitand 'x&=1; x&=2;' can be simplified to 'x=0;') 2013-01-21 19:59:34 +01:00
testautovariables.cpp Refactorized check for assigning function parameters: 2013-02-18 08:52:49 -08:00
testboost.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testbufferoverrun.cpp Replaced _settings->isEnabled("style") by _settings->isEnabled("warning") wherever warnings are issued 2013-03-03 02:41:59 -08:00
testcharvar.cpp Replaced _settings->isEnabled("style") by _settings->isEnabled("warning") wherever warnings are issued 2013-03-03 02:41:59 -08:00
testclass.cpp Improved handling of dereferences in CheckClass::noMemset(), fixing false negatives and false positives related to multidimensional arrays and arrays of pointers. 2013-03-04 02:47:29 -08:00
testcmdlineparser.cpp fix misspellings & gcc v3.4.6 warnings 2013-02-09 23:43:09 -07:00
testconstructors.cpp Implement initial support for Types in Symboldatabase: 2013-03-05 04:33:38 -08:00
testcppcheck.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testdivision.cpp Replaced _settings->isEnabled("style") by _settings->isEnabled("warning") wherever warnings are issued 2013-03-03 02:41:59 -08:00
testerrorlogger.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testexceptionsafety.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testfilelister.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testfiles.pri
testincompletestatement.cpp Replaced _settings->isEnabled("style") by _settings->isEnabled("warning") wherever warnings are issued 2013-03-03 02:41:59 -08:00
testinternal.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testio.cpp Replaced _settings->isEnabled("style") by _settings->isEnabled("warning") wherever warnings are issued 2013-03-03 02:41:59 -08:00
testleakautovar.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testmathlib.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testmemleak.cpp Replaced _settings->isEnabled("style") by _settings->isEnabled("warning") wherever warnings are issued 2013-03-03 02:41:59 -08:00
testnonreentrantfunctions.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testnullpointer.cpp Fixed #4539 (False positive: Possible null pointer dereference) 2013-02-27 23:45:21 -08:00
testobsoletefunctions.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testoptions.cpp
testother.cpp Partially reverted 657e5d7ea2 because of trigraph issue. 2013-03-05 01:21:59 -08:00
testpath.cpp Fixed #4608 (false positive: (style) struct or union member is never used.) 2013-03-01 16:13:04 +01:00
testpathmatch.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testpostfixoperator.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testpreprocessor.cpp Preprocessor: Better fix for hangs. And added proper unit test. 2013-01-27 02:53:29 +01:00
testrunner.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testrunner.vcproj Updated VS9 solution with qmake (#4397). 2012-12-13 20:38:10 +01:00
testrunner.vcxproj Switch to TinyXml2 2013-02-16 10:01:34 -08:00
testrunner.vcxproj.filters Switch to TinyXml2 2013-02-16 10:01:34 -08:00
testsimplifytokens.cpp Fixed #4572 (Analysis failed: sizeof final) 2013-02-10 23:54:15 +01:00
teststl.cpp Added support for different containers, while-loops and if to CheckStl::stlOutOfBounds() 2013-03-04 10:59:46 -08:00
testsuite.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testsuite.h Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testsuppressions.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testsymboldatabase.cpp Adapted testsymboldatabase.cpp to recent changes 2013-03-05 06:46:34 -08:00
testthreadexecutor.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testtimer.cpp Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00
testtoken.cpp Changed behaviour of %op% pattern accordingly to changes to Token::isOp(). Added %cop% as replacement for old %op% 2013-03-01 02:43:59 -08:00
testtokenize.cpp Don't assign a varid to a variadic function 2013-03-05 08:32:52 -08:00
testuninitvar.cpp Fixed #4600 (False positive Uninitialized struct member when using it as 'out parameter') 2013-02-23 15:57:58 +01:00
testunusedfunctions.cpp Fixed #4490 (False positive: unused function (function pointer is taken in global scope)) 2013-01-16 16:52:57 +01:00
testunusedprivfunc.cpp Refactorized CheckClass::privateFunctions: 2013-02-16 01:51:08 -08:00
testunusedvar.cpp Fixed some small formatting issues in test suite 2013-03-04 11:14:56 -08:00
testutils.h Updating year 2012 -> 2013 to .cpp and .h files and man page. 2013-01-01 18:29:08 +02:00