#8220: Added a regression test.
This commit is contained in:
parent
94dc6c2c3f
commit
ccd525962b
|
@ -2949,6 +2949,23 @@ private:
|
||||||
}
|
}
|
||||||
|
|
||||||
void alwaysTrue() {
|
void alwaysTrue() {
|
||||||
|
|
||||||
|
check("void f ()\n"// #8220
|
||||||
|
"{\n"
|
||||||
|
" int a;\n"
|
||||||
|
" int b = 0;\n"
|
||||||
|
" int ret;\n"
|
||||||
|
" \n"
|
||||||
|
" a = rand();\n"
|
||||||
|
" while (((0 < a) && (a < 2)) && ((8 < a) && (a < 10))) \n"
|
||||||
|
" {\n"
|
||||||
|
" b += a;\n"
|
||||||
|
" a ++;\n"
|
||||||
|
" }\n"
|
||||||
|
" ret = b;\n"
|
||||||
|
"}");
|
||||||
|
ASSERT_EQUALS("[test.cpp:8] -> [test.cpp:8]: (style) Condition '8<a' is always false\n", errout.str());
|
||||||
|
|
||||||
check("void f() {\n" // #4842
|
check("void f() {\n" // #4842
|
||||||
" int x = 0;\n"
|
" int x = 0;\n"
|
||||||
" if (a) { return; }\n" // <- this is just here to fool simplifyKnownVariabels
|
" if (a) { return; }\n" // <- this is just here to fool simplifyKnownVariabels
|
||||||
|
|
Loading…
Reference in New Issue