blob: 6e23acfe9060a003259b9cb7b90269abae8eb00e [file] [log] [blame]
lowRISC Contributors802543a2019-08-31 12:12:56 +01001#!/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
6find 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.
17braces_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)
27if [ ! -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
33fi