.. |
options.cpp
|
Visual Studio: Fixed compiler error. It seems visual studio 2008 doesn't like 'not'.
|
2010-10-02 09:42:31 +02:00 |
options.h
|
Added Doxygen commenting, per kimmov's request.
|
2010-09-26 19:15:14 +10:00 |
redirect.h
|
Added Doxygen commenting, per kimmov's request.
|
2010-09-26 19:15:14 +10:00 |
test.cxx
|
renamed gui/test.cpp to test/test.cxx
|
2010-02-19 07:21:16 +01:00 |
test.pro
|
Revert "Remove the testsuppressions because it doesn't contain any unit tests. A testsuppressions would be nice if it was more specific. Ticket: #2748"
|
2011-05-03 10:18:05 +00:00 |
test.vcproj
|
Update Visual Studio 2008/2010 project files.
|
2011-07-06 11:31:20 +03:00 |
test.vcxproj
|
Update Visual Studio 2008/2010 project files.
|
2011-07-06 11:31:20 +03:00 |
test.vcxproj.filters
|
Update Visual Studio 2008/2010 project files.
|
2011-07-06 11:31:20 +03:00 |
test64bit.cpp
|
Fixed #2912 (false positive: (portability) Assigning an integer (int/long/etc) to a pointer is not portable)
|
2011-07-16 17:08:03 +02:00 |
testautovariables.cpp
|
fix #2931 (another false negative in auto variables checking when function parameter is a struct)
|
2011-07-22 08:31:31 -04:00 |
testbufferoverrun.cpp
|
Fixed #2920 (False positive: Array 'arr[0]' index 0 out of bounds (array size and index are unknown))
|
2011-07-20 07:57:42 +02:00 |
testcharvar.cpp
|
TestCharVar::pointer: Added one more test case to see that error message disappears when code is fixed
|
2011-07-05 19:57:07 +02:00 |
testclass.cpp
|
fix #2878 (derived global class not tokenized properly (class A : ::B { };))
|
2011-06-30 07:25:36 -04:00 |
testcmdlineparser.cpp
|
Add test for --check-config.
|
2011-05-04 21:07:02 +03:00 |
testconstructors.cpp
|
fix spelling of initialized in checkclass messages
|
2011-04-26 20:37:16 -04:00 |
testcppcheck.cpp
|
Report percentage complete based on file size
|
2011-04-26 22:26:23 +12:00 |
testdivision.cpp
|
Fixed #2932 (segmentation fault of cppcheck ( i / i ))
|
2011-07-24 09:06:38 +02:00 |
testerrorlogger.cpp
|
Add more tests for ErrorLogger.
|
2011-07-16 16:04:43 +03:00 |
testexceptionsafety.cpp
|
Fixed #2388 (Use throw without argument to rethrow exceptions)
|
2011-02-05 01:11:09 -08:00 |
testfilelister.cpp
|
FileLister: don't assume that all files have nonzero size in test case
|
2011-04-27 07:38:53 +12:00 |
testincompletestatement.cpp
|
Fixed #2655 (false positive: (warning) Redundant code: Found a statement that begins with numeric constant)
|
2011-03-30 21:57:01 +02:00 |
testmathlib.cpp
|
testmathlib: improved testcoverage of mathlib
|
2011-07-19 09:10:34 +02:00 |
testmemleak.cpp
|
Fixed #2848 (False positive: Memory leak when assigning and freeing from another struct)
|
2011-07-21 13:33:20 +02:00 |
testnullpointer.cpp
|
Fix #2840, False positive: Null pointer dereference
|
2011-06-26 22:46:33 +03:00 |
testobsoletefunctions.cpp
|
Obsolete functions: Fix messages for gethostbyaddr, gethostbyname
|
2011-04-07 00:33:54 +02:00 |
testoptions.cpp
|
Removed static std::string.
|
2010-09-26 16:52:30 +10:00 |
testother.cpp
|
made #2827 fix more generic by adding more ops and using pattern matching rather than string matching
|
2011-07-17 16:28:00 -04:00 |
testpath.cpp
|
Remove './' at begin of path in Path::simplifyPath.
|
2011-03-29 20:53:18 +03:00 |
testpathmatch.cpp
|
Allow to exclude filenames (with paths).
|
2011-02-03 14:43:42 +02:00 |
testpostfixoperator.cpp
|
Added testcases for #2933 (Postfix operator check fails to warn for structs)
|
2011-07-24 14:53:03 +02:00 |
testpreprocessor.cpp
|
Preprocessor: Fix #if0 #elif todo test case. Ticket: #2619
|
2011-07-24 08:54:24 +02:00 |
testrunner.cpp
|
Change year 2010 -> 2011 in license texts.
|
2011-01-09 21:33:36 +02:00 |
testsettings.cpp
|
Fixed #2797 (Inline suppressions do not handle filenames correctly)
|
2011-06-29 20:23:39 +02:00 |
testsimplifytokens.cpp
|
Fixed #2885 (crash of cppcheck while checking gcc-testsuite)
|
2011-07-21 16:13:35 +02:00 |
teststl.cpp
|
Test false auto_ptr positive.
|
2011-07-20 08:22:35 +02:00 |
testsuite.cpp
|
Fixed #2526 (Make TODO_ASSERT_EQUALS take three arguments (value, to_be, as_is)?...
|
2011-01-30 23:20:11 +11:00 |
testsuite.h
|
Report percentage complete based on file size
|
2011-04-26 22:26:23 +12:00 |
testsuppressions.cpp
|
Fix testsuppressions for Windows builds for now, pending further refactoring
|
2011-05-03 10:41:52 +00:00 |
testsymboldatabase.cpp
|
fix #2865 (segmentation fault of cppcheck ( char a[1] ))
|
2011-06-27 07:31:10 -04:00 |
testthreadexecutor.cpp
|
Remove ErrorLogger::reportStatus() method.
|
2011-04-27 23:27:02 +03:00 |
testtoken.cpp
|
testcase for broken Token::Match %oror%|&&
|
2011-07-16 07:28:26 -04:00 |
testtokenize.cpp
|
Tokenizer::simplifyFunctionPointer: don't simplify function call. Ticket: #2873
|
2011-07-22 07:58:53 +02:00 |
testuninitvar.cpp
|
Fixed #2775 (Uninitialized variable: Not detected when uninitialized struct pointer is dereferenced in sub function)
|
2011-07-04 21:04:32 +02:00 |
testunusedfunctions.cpp
|
Change year 2010 -> 2011 in license texts.
|
2011-01-09 21:33:36 +02:00 |
testunusedprivfunc.cpp
|
fix #2807 (Wrong handling of function references when prefixed with &)
|
2011-06-29 07:19:34 -04:00 |
testunusedvar.cpp
|
fix #2929 (Additional Unused variable check)
|
2011-07-21 18:37:37 -04:00 |
testutils.h
|
Change year 2010 -> 2011 in license texts.
|
2011-01-09 21:33:36 +02:00 |