From 7213833c054da4a5c46d0f4e3190b2770c204b7c Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 16 Aug 2016 17:52:53 +0300 Subject: Add check for wrong brackets formatting. --- tests/testsrc/bad/brackets.cpp | 81 +++++++++++++++++++++++++++++++++++++++++ tests/testsrc/bad/brackets.h | 79 ++++++++++++++++++++++++++++++++++++++++ tests/testsrc/good/brackets.cpp | 34 +++++++++++++++++ tests/testsrc/good/brackets.h | 34 +++++++++++++++++ 4 files changed, 228 insertions(+) create mode 100644 tests/testsrc/bad/brackets.cpp create mode 100644 tests/testsrc/bad/brackets.h create mode 100644 tests/testsrc/good/brackets.cpp create mode 100644 tests/testsrc/good/brackets.h (limited to 'tests/testsrc') diff --git a/tests/testsrc/bad/brackets.cpp b/tests/testsrc/bad/brackets.cpp new file mode 100644 index 0000000..898a258 --- /dev/null +++ b/tests/testsrc/bad/brackets.cpp @@ -0,0 +1,81 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "debug.h" + +void func1() { + if (a == 10) + { + if (b == 20) + { + } + } +} + +void func2() +{ + if (a == 10) { + if (b == 20) + { + } + } +} + +void func3() +{ + if (a == 10) + { + if (b == 20) { + } + } +} + +void func4() +{ + if (a == 10) + { + if (b == 20) + { + } else + { + } + } +} + +void func5() +{ + if (a == 10) + { + if (b == 20) + { + } + else { + } + } +} + +void func6() +{ + if (a == 10) { + if (b == 20) { + } else { + } + } +} diff --git a/tests/testsrc/bad/brackets.h b/tests/testsrc/bad/brackets.h new file mode 100644 index 0000000..bb1ba39 --- /dev/null +++ b/tests/testsrc/bad/brackets.h @@ -0,0 +1,79 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +void func1() { + if (a == 10) + { + if (b == 20) + { + } + } +} + +void func2() +{ + if (a == 10) { + if (b == 20) + { + } + } +} + +void func3() +{ + if (a == 10) + { + if (b == 20) { + } + } +} + +void func4() +{ + if (a == 10) + { + if (b == 20) + { + } else + { + } + } +} + +void func5() +{ + if (a == 10) + { + if (b == 20) + { + } + else { + } + } +} + +void func6() +{ + if (a == 10) { + if (b == 20) { + } else { + } + } +} diff --git a/tests/testsrc/good/brackets.cpp b/tests/testsrc/good/brackets.cpp new file mode 100644 index 0000000..2708945 --- /dev/null +++ b/tests/testsrc/good/brackets.cpp @@ -0,0 +1,34 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "debug.h" + +void func() +{ + if (a == 10) + { + if (b == 20) + { + } + else + { + } + } +} diff --git a/tests/testsrc/good/brackets.h b/tests/testsrc/good/brackets.h new file mode 100644 index 0000000..89f5b71 --- /dev/null +++ b/tests/testsrc/good/brackets.h @@ -0,0 +1,34 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "lintmanager.h" + +void func() +{ + if (a == 10) + { + if (b == 20) + { + } + else + { + } + } +} -- cgit v1.2.3-60-g2f50