Skip to content

Commit 3c14e4b

Browse files
XhmikosRPKEuS
authored andcommitted
test: tabs to spaces, remove trailing spaces and extra empty lines at the end of files
1 parent 6e4e3df commit 3c14e4b

21 files changed

+56
-80
lines changed

test/options.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,3 @@ const std::string& options::which_test() const
4343
{
4444
return _which_test;
4545
}
46-

test/test.cxx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,3 @@ int main()
3232
f(a);
3333
possible_style();
3434
}
35-
36-

test/test64bit.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,4 +169,3 @@ class Test64BitPortability : public TestFixture {
169169
};
170170

171171
REGISTER_TEST(Test64BitPortability)
172-

test/testassignif.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,3 @@ class TestAssignIf : public TestFixture {
138138
};
139139

140140
REGISTER_TEST(TestAssignIf)
141-

test/testautovariables.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -667,5 +667,3 @@ class TestAutoVariables : public TestFixture {
667667
};
668668

669669
REGISTER_TEST(TestAutoVariables)
670-
671-

test/testbufferoverrun.cpp

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -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"

test/testcharvar.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,4 +224,3 @@ class TestCharVar : public TestFixture {
224224
};
225225

226226
REGISTER_TEST(TestCharVar)
227-

test/testfilelister.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,3 @@ class TestFileLister: public TestFixture {
9898
};
9999

100100
REGISTER_TEST(TestFileLister)
101-

test/testincompletestatement.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,5 +206,3 @@ class TestIncompleteStatement : public TestFixture {
206206
};
207207

208208
REGISTER_TEST(TestIncompleteStatement)
209-
210-

test/testleakautovar.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,4 +566,3 @@ class TestLeakAutoVar : public TestFixture {
566566
};
567567

568568
REGISTER_TEST(TestLeakAutoVar)
569-

0 commit comments

Comments
 (0)