aboutsummaryrefslogtreecommitdiff
path: root/test/check-trailing-whitespace.sh
blob: 4aa4af9aa991e0dec637484ed6923f2604da60fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

top_srcdir=${SOURCE_ROOT:-..}
. ${top_srcdir}/test/setup_env.sh

ebegin "Checking trailing whitespace in code"
# XXX: Should we check man pages too ?
out=$(cd ${top_srcdir}; find */ \
	'(' -name '*.[ch]' -o -name '*.in' -o -name '*.sh' ')' \
	-exec grep -n -E '[[:space:]]+$' {} +)
[ -z "${out}" ]
eend $? "Trailing whitespace needs to be deleted:"$'\n'"${out}"