STL: Added TODO test case for the new double-increment check

This commit is contained in:
Daniel Marjamäki 2010-10-10 17:55:14 +02:00
parent ef4ce6f46b
commit f427fdb856
1 changed files with 13 additions and 0 deletions

View File

@ -98,6 +98,7 @@ private:
TEST_CASE(missingInnerComparison1);
TEST_CASE(missingInnerComparison2); // no FP when there is comparison
TEST_CASE(missingInnerComparison3); // no FP when there is iterator shadowing
TEST_CASE(missingInnerComparison4); // no FP when the iterator is incremented in inner for loop
}
void check(const std::string &code)
@ -1080,6 +1081,18 @@ private:
"}\n");
ASSERT_EQUALS("", errout.str());
}
void missingInnerComparison4()
{
check("void f(std::list<int> &ints) {\n"
" for (std::list<int>::iterator it1 = ints.begin(); it1 != ints.end(); ++it1) {\n"
" std::list<int>::iterator it2 = it1;\n"
" for (++it2; it2 != ints.end(); ++it2)\n"
" { }\n"
" }\n"
"}\n");
TODO_ASSERT_EQUALS("", errout.str());
}
};
REGISTER_TEST(TestStl)