cppcheck/test
Daniel Marjamäki 325414e354 CheckLeakAutoVar: Updated error messages 2012-06-30 16:23:10 +02:00
..
options.cpp Changed the order of some structures in order to improve, even if for a bit, their padding. 2012-05-14 20:49:03 +02:00
options.h Changed the order of some structures in order to improve, even if for a bit, their padding. 2012-05-14 20:49:03 +02:00
redirect.h Refactorizations in test suite: 2012-04-17 12:57:16 +02:00
test.cxx renamed gui/test.cpp to test/test.cxx 2010-02-19 07:21:16 +01:00
test.pro Add general PRO file for console builds. 2012-06-18 09:28:32 +03:00
test64bit.cpp Improve check: Check for 64-bit portability issues when returning pointers/integers 2012-04-26 13:39:19 +02:00
testassignif.cpp Update year to 2012 2012-01-01 01:05:37 +02:00
testautovariables.cpp Fixed #3357: 2012-05-06 10:37:41 -07:00
testboost.cpp Update year to 2012 2012-01-01 01:05:37 +02:00
testbufferoverrun.cpp Updated arrayIndexOutOfBounds error message. Thank you Kimmo for the suggestion. 2012-06-23 09:51:32 +02:00
testcharvar.cpp Fixed #3878 (Sign extension with unsigned char false positive) 2012-06-09 08:43:13 +02:00
testclass.cpp Issue useInitializationList message only on variables of class types. 2012-06-06 03:03:51 -07:00
testcmdlineparser.cpp Implemented #2990: Print relative paths if -rp or --relative-paths is given 2012-04-06 10:49:21 +02:00
testconstructors.cpp Fixed #3820 2012-05-22 02:27:21 -07:00
testcppcheck.cpp - Correctly set Scope::function variable in symboldatabase 2012-01-21 10:08:09 +01:00
testdivision.cpp Fixed #3357: 2012-05-06 10:37:41 -07:00
testerrorlogger.cpp xml: fixed test case. 2012-03-25 12:51:10 +02:00
testexceptionsafety.cpp Fixed #3858 (Throw exception in destructor BUT inside a try-catch shouldn't be reported) 2012-06-17 14:33:18 +02:00
testfilelister.cpp Refactored STL container usage in CLI. 2012-02-19 17:22:59 +01:00
testfiles.pri Tests: Add generated testfiles.pri. 2012-06-11 22:11:29 +03:00
testincompletestatement.cpp Update year to 2012 2012-01-01 01:05:37 +02:00
testinternal.cpp added testcase to ticket 3727 2012-05-01 14:36:42 +02:00
testio.cpp Fixed #3909: Handle constructor syntax initialization. 2012-06-24 09:57:17 -07:00
testleakautovar.cpp CheckLeakAutoVar: Updated error messages 2012-06-30 16:23:10 +02:00
testmathlib.cpp fixed ticket 3693. Added modulus operator to Mathlib + unittests. Added a test to checkother to ensure the testcase of ticket 3693 does not trigger an error message. 2012-04-12 14:02:09 +02:00
testmemleak.cpp Fixed #3660 (False positive memleak (allocation function uses non-local variable)) 2012-06-25 20:00:50 +02:00
testnonreentrantfunctions.cpp Fix ticket #3483 (POSIX.1-2008 - obsolete functions) 2012-01-12 22:28:12 +01:00
testnullpointer.cpp Fixed #3807 (False positive: possible null pointer dereference) 2012-05-31 18:41:00 +02:00
testobsoletefunctions.cpp - Improved nullpointer check: Fixed #1171 2012-02-11 12:26:48 +01:00
testoptions.cpp changed the astyle formatting flags 2011-10-13 20:53:06 +02:00
testother.cpp Fixed #3868 (false positive: (style) Same expression on both sides of '|'.) 2012-06-23 19:54:15 +02:00
testpath.cpp Fixed crash when "-rp=" or "--relative-paths=" is given - print Error. 2012-04-14 14:44:15 +02:00
testpathmatch.cpp Refactored STL container usage in CLI. 2012-02-19 17:22:59 +01:00
testpostfixoperator.cpp Update year to 2012 2012-01-01 01:05:37 +02:00
testpreprocessor.cpp Visual Studio: Hide VS compiler warnings for '(char)0xff' and '(char)0xfe' 2012-06-10 15:51:56 +02:00
testrunner.cpp Update year to 2012 2012-01-01 01:05:37 +02:00
testrunner.vcproj Implemented support for building cppcheck lib into a dll 2012-06-10 05:19:09 -07:00
testrunner.vcxproj Disabled C4512 in VS10 (#3882) 2012-06-14 09:39:31 -07:00
testrunner.vcxproj.filters Bugfix (#3844): Added 3 missing files to testrunner 2012-06-11 03:55:33 -07:00
testsimplifytokens.cpp Fixed #3579 (object destroyed immediately:False positive & negative) 2012-06-10 21:52:32 +02:00
teststl.cpp Fixed #3865 (Suspicious condition. The result of find is an iterator, but it is not properly checked.) 2012-06-07 19:33:18 +02:00
testsuite.cpp testrunner: assert-like functions should take linenr parameter as a 'unsigned int' (maybe in the future these should be converted to 'size_t'?); 2012-01-03 15:48:03 +01:00
testsuite.h Refactorizations in test suite: 2012-04-17 12:57:16 +02:00
testsuppressions.cpp Avoid copying Settings in CppCheckExecutor 2012-04-06 14:19:26 +02:00
testsymboldatabase.cpp Refactorization: 2012-06-08 09:05:02 -07:00
testthreadexecutor.cpp Refactored STL container usage in CLI. 2012-02-19 17:22:59 +01:00
testtoken.cpp Made some functions static or const according to cppcheck results 2012-05-17 01:33:24 -07:00
testtokenize.cpp Fixed #3924 (False positive: Uninitialized variable (const pointer)) 2012-06-30 12:12:36 +02:00
testuninitvar.cpp Fixed #3916 (false positive: uninitialized variable when using assignment and , in rhs) 2012-06-27 20:44:19 +02:00
testunusedfunctions.cpp Fixed #3875 (Static member method called with class name is considered unused) 2012-06-14 22:04:21 +02:00
testunusedprivfunc.cpp Fixed #3661 (False positive: unusedPrivateFunction) 2012-04-09 11:19:19 +02:00
testunusedvar.cpp CheckUnusedVar: dont report false positives for extern variables 2012-06-28 17:22:56 +02:00
testutils.h Refactorizations in test suite: 2012-05-16 09:04:03 -07:00