blob: fc2996503423f4155fb81237609d43f4e7c7069f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/bin/sh
#
# Copyright 2016 Garrett D'Amore <garrett@damore.org>
#
# This software is supplied under the terms of the MIT License, a
# copy of which should be located in the distribution where this
# file was obtained (LICENSE.txt). A copy of the license may also be
# found online at https://opensource.org/licenses/MIT.
#
#
# This script is used to run uncrustify and report files that don't match.
# It looks for .c and .h files, located in ../src, and uses the config file
# uncrustify.cfg located in the same directory as this script. It only handles
# C language at this point.
#
mydir=`dirname $0`
srcdir=${mydir}/../src
failed=
for file in `find ${srcdir} -name '*.[ch]' -print`
do
uncrustify -c "${mydir}/uncrustify.cfg" -q -lC $file
if [ $? -ne 0 ]; then
echo "Cannot run uncrustify??" 1>&2
exit 2
fi
colordiff -u $file $file.uncrustify
if [ $? -ne 0 ]; then
failed=1
fi
rm ${file}.uncrustify
done
if [ -n "$failed" ]
then
echo "Uncrustify differences found!" 1>&2
exit 2
fi
|