cppcheck/test
Paul Fultz II bba6dfb8b2 Fix issue 4744: ValueFlow: known integer result
This fixes valueflow to have a value for `||` operator here:

```cpp
bool f()
{
	bool a = (4 == 3); // <-- 0
	bool b = (3 == 3); // <-- 1
	return a || b; // <-- 1
}
```
2019-01-03 07:05:31 +01:00
..
cfg Fixed checkcfg: test/cfg/std.cpp:2904:error:uninitvar:Uninitialized variable: s 2018-12-23 18:09:55 +01:00
synthetic Improve Python code 2017-06-05 13:23:00 +02:00
CMakeLists.txt Add a check target to cmake (#1465) 2018-11-05 18:13:04 +01:00
options.cpp
options.h
redirect.h Updated copyright year 2018-01-14 15:37:52 +01:00
test.cxx
test64bit.cpp
testassert.cpp
testastutils.cpp
testautovariables.cpp Fix issue 8910: Regression: ValueFlow: wrong conditional tokvalue 2018-12-29 09:31:21 +01:00
testbool.cpp
testboost.cpp
testbufferoverrun.cpp
testcharvar.cpp
testclass.cpp
testcmdlineparser.cpp
testcondition.cpp Comment out code in valueFlowArray. There was too many false positives. 2019-01-02 19:57:11 +01:00
testconstructors.cpp
testcppcheck.cpp Fix override warnings. (#1234) 2018-05-15 16:37:40 +02:00
testerrorlogger.cpp Fixed #8906 (Encoding error in XML message: info attribute) 2019-01-02 18:22:12 +01:00
testexceptionsafety.cpp
testfilelister.cpp
testfiles.pri testrunner: Add testplatform to verify platform loading (#1176) 2018-04-18 16:12:35 +02:00
testfunctions.cpp
testgarbage.cpp Fixed #8907 (unknown macro not detected) 2019-01-01 19:30:13 +01:00
testimportproject.cpp
testincompletestatement.cpp
testinternal.cpp
testio.cpp
testleakautovar.cpp Fixed #8794 - Memory leak false positive triggered by !(x != NULL) (#1450) 2018-10-26 06:21:45 +02:00
testlibrary.cpp
testmathlib.cpp
testmemleak.cpp
testnullpointer.cpp CTU: Avoid FP in else block 2018-12-31 08:24:39 +01:00
testoptions.cpp
testother.cpp Fixed #8907 (unknown macro not detected) 2019-01-01 19:30:13 +01:00
testpath.cpp
testpathmatch.cpp Updated copyright year for modified files 2018-06-10 22:07:21 +02:00
testplatform.cpp
testpostfixoperator.cpp
testpreprocessor.cpp Fixed handling of macros with known value defined in header file in configuration splitting (#8404) 2018-10-08 16:38:47 +02:00
testrunner.cpp
testrunner.vcxproj Export interfaces from cppcheck-core.dll used from testrunner. In turn remove ctu sources from testrunner which are obsolete now. 2018-12-28 23:09:44 +01:00
testrunner.vcxproj.filters Export interfaces from cppcheck-core.dll used from testrunner. In turn remove ctu sources from testrunner which are obsolete now. 2018-12-28 23:09:44 +01:00
testsamples.cpp
testsimplifytemplate.cpp template simplifier: fix crash on daca c++-annotations project (#1556) 2019-01-02 07:15:45 +01:00
testsimplifytokens.cpp
testsimplifytypedef.cpp
testsizeof.cpp Fix override warnings. (#1234) 2018-05-15 16:37:40 +02:00
teststl.cpp
teststring.cpp
testsuite.cpp
testsuite.h
testsuppressions.cpp
testsymboldatabase.cpp
testthreadexecutor.cpp
testtimer.cpp
testtoken.cpp
testtokenize.cpp Fixed #7203 (Better syntax error, handle array declaration with @) 2019-01-01 09:45:41 +01:00
testtokenlist.cpp
testtype.cpp
testuninitvar.cpp CTU: Find paths better 2018-12-30 16:23:25 +01:00
testunusedfunctions.cpp
testunusedprivfunc.cpp Fixed #6183 (TemplateSimplifier: Does not handle methods) (#1546) 2018-12-29 11:19:53 +01:00
testunusedvar.cpp Fixed #8928 (false positive: (style) Variable 'x' is assigned a value that is never used.) 2019-01-02 20:23:02 +01:00
testutils.h
testvaarg.cpp Updated copyright year for modified files 2018-06-10 22:07:21 +02:00
testvalueflow.cpp Fix issue 4744: ValueFlow: known integer result 2019-01-03 07:05:31 +01:00
testvarid.cpp