added todo testcases for multidimensional out of bounds checking

This commit is contained in:
Martin Ettl 2010-04-23 21:56:35 +02:00
parent a3b781a181
commit 572ae0c1b4
1 changed files with 18 additions and 0 deletions

View File

@ -951,6 +951,24 @@ private:
" a[1][1][2] = 'a';\n"
"}\n");
ASSERT_EQUALS("[test.cpp:4]: (error) Array 'a[2][2][2]' index a[1][1][2] out of bounds\n", errout.str());
check("void f()\n"
"{\n"
" char a[10][10][10];\n"
" a[2*3][4*3][2] = 'a';\n"
"}\n");
TODO_ASSERT_EQUALS("[test.cpp:4]: (error) Array 'a[10][10][10]' index a[6][12][2] out of bounds\n", errout.str());
check("void f()\n"
"{\n"
" int i=2;\n"
" int ii=10;\n"
" char a[ii][ii][ii];\n"
" a[i*3][4*ii][ii] = 'a';\n"
"}\n");
TODO_ASSERT_EQUALS("[test.cpp:4]: (error) Array 'a[10][10][10]' index a[6][40][10] out of bounds\n", errout.str());
}
void array_index_switch_in_for()