lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # Copyright lowRISC contributors. |
| 3 | # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| 4 | # SPDX-License-Identifier: Apache-2.0 |
| 5 | |
| 6 | find sw hw \ |
| 7 | -not \( -path '*/vendor' -prune \) \ |
| 8 | -not \( -path 'sw/coremark' -prune \) \ |
| 9 | \( -name '*.cpp' \ |
| 10 | -o -name '*.cc' \ |
| 11 | -o -name '*.c' \ |
| 12 | -o -name '*.h' \) \ |
| 13 | -exec clang-format -i {} \; |
| 14 | |
| 15 | # Report on missing curly braces for loops and control statements. |
| 16 | # clang-format cannot fix them for us, so this requires manual work. |
| 17 | braces_missing=$( |
| 18 | find sw hw \ |
| 19 | -not \( -path '*/vendor' -prune \) \ |
| 20 | -not \( -path 'sw/coremark' -prune \) \ |
| 21 | \( -name '*.cpp' \ |
| 22 | -o -name '*.cc' \ |
| 23 | -o -name '*.c' \ |
| 24 | -o -name '*.h' \) \ |
| 25 | -exec grep -Hn -P '(^|\s)((if|while|for) \(.+\)|else\s*)$' {} \; |
| 26 | ) |
| 27 | if [ ! -z "$braces_missing" ]; then |
| 28 | echo ERROR: Curly braces are missing from the following control or loop |
| 29 | echo statements. Please add them manually and re-run this script. |
| 30 | echo |
| 31 | echo "$braces_missing" |
| 32 | exit 1 |
| 33 | fi |