@@ -117,18 +117,18 @@ class TestBufferOverrun : public TestFixture {
117117 TEST_CASE (array_index_for_in_for); // FP: #2634
118118 TEST_CASE (array_index_calculation);
119119 TEST_CASE (array_index_negative1);
120- TEST_CASE (array_index_negative2); // ticket #3063
120+ TEST_CASE (array_index_negative2); // ticket #3063
121121 TEST_CASE (array_index_for_decr);
122- TEST_CASE (array_index_varnames); // FP: struct member. #1576
123- TEST_CASE (array_index_for_break); // FP: for,break
122+ TEST_CASE (array_index_varnames); // FP: struct member. #1576
123+ TEST_CASE (array_index_for_break); // FP: for,break
124124 TEST_CASE (array_index_for_continue); // for,continue
125- TEST_CASE (array_index_for); // FN: for,if
126- TEST_CASE (array_index_for_neq); // #2211: Using != in condition
127- TEST_CASE (array_index_for_question); // #2561: for, ?:
125+ TEST_CASE (array_index_for); // FN: for,if
126+ TEST_CASE (array_index_for_neq); // #2211: Using != in condition
127+ TEST_CASE (array_index_for_question); // #2561: for, ?:
128128 TEST_CASE (array_index_for_andand_oror); // FN: using && or || in the for loop condition
129- TEST_CASE (array_index_vla_for); // #3221: access VLA inside for
130- TEST_CASE (array_index_extern); // FP when using 'extern'. #1684
131- TEST_CASE (array_index_cast); // FP after cast. #2841
129+ TEST_CASE (array_index_vla_for); // #3221: access VLA inside for
130+ TEST_CASE (array_index_extern); // FP when using 'extern'. #1684
131+ TEST_CASE (array_index_cast); // FP after cast. #2841
132132 TEST_CASE (array_index_string_literal);
133133
134134 TEST_CASE (buffer_overrun_1);
@@ -1401,9 +1401,9 @@ class TestBufferOverrun : public TestFixture {
14011401
14021402 check (" int f( ) \n "
14031403 " {\n "
1404- " struct {\n "
1405- " int arr[ 3 ];\n "
1406- " } var[ 1 ];\n "
1404+ " struct {\n "
1405+ " int arr[ 3 ];\n "
1406+ " } var[ 1 ];\n "
14071407 " int y;\n "
14081408 " var[ 0 ].arr[ 0 ] = 0;\n "
14091409 " var[ 0 ].arr[ 1 ] = 1;\n "
@@ -1415,9 +1415,9 @@ class TestBufferOverrun : public TestFixture {
14151415
14161416 check (" int f( ) \n "
14171417 " {\n "
1418- " struct {\n "
1419- " int arr[ 3 ];\n "
1420- " } var[ 1 ];\n "
1418+ " struct {\n "
1419+ " int arr[ 3 ];\n "
1420+ " } var[ 1 ];\n "
14211421 " int y;\n "
14221422 " var[ 0 ].arr[ 0 ] = 0;\n "
14231423 " var[ 0 ].arr[ 1 ] = 1;\n "
0 commit comments