added todo test case for ticket 200
This commit is contained in:
parent
8efae83184
commit
c9d02273b8
|
@ -164,6 +164,7 @@ private:
|
||||||
|
|
||||||
TEST_CASE(realloc1);
|
TEST_CASE(realloc1);
|
||||||
TEST_CASE(realloc2);
|
TEST_CASE(realloc2);
|
||||||
|
// TODO TEST_CASE(realloc3);
|
||||||
|
|
||||||
TEST_CASE(assign);
|
TEST_CASE(assign);
|
||||||
|
|
||||||
|
@ -1648,6 +1649,19 @@ private:
|
||||||
ASSERT_EQUALS(std::string(""), errout.str());
|
ASSERT_EQUALS(std::string(""), errout.str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void realloc3()
|
||||||
|
{
|
||||||
|
check("void foo()\n"
|
||||||
|
"{\n"
|
||||||
|
" char *a = 0;\n"
|
||||||
|
" if ((a = realloc(a, 100)) == NULL)\n"
|
||||||
|
" return;\n"
|
||||||
|
" free(a);\n"
|
||||||
|
"}\n");
|
||||||
|
|
||||||
|
ASSERT_EQUALS(std::string(""), errout.str());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void assign()
|
void assign()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue