summaryrefslogtreecommitdiff
path: root/tests/source/run.sh
blob: 8d7f9c3b9137142479a8ed80f3227f8ac2219f23 (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
39
40
41
42
43
44
45
46
#!/bin/bash -e

if [[ -z "${top_srcdir}" ]] ; then
	cd "${0%/*}/../.."
	top_srcdir="${PWD}"
fi
TEST_DIR="${top_srcdir}/tests/source"

cd "${top_srcdir}"

ret=0

# Force a basic environment regardless of how we're configured.
export GIT_PAGER=cat
export LC_ALL=C

# List all the non-binary files we know about in the tree.
read -r -d'\n' -a files < <(
	git ls-tree -r --name-only HEAD | \
		grep -Ev '\.(avif|bin|bmp|gd|gd2|gif|heic|jpg|jpeg|png|pic|sgi|tga|tiff|ttf|xbm|xpm)$'
) || :

banner() {
	echo
	echo "### $*"
}

do_grep() {
	# Use -a so UTF-8 files don't get flagged as binary & skipped.
	if git grep -aHnE "$@" "${files[@]}" ; then
		ret=1
	fi
}

# Run some tests.

banner "Check for trailing whitespace."
do_grep '[[:space:]]+$'

banner "Check for Windows line endings."
do_grep $'\r$'

banner "Checking trailing lines."
"${TEST_DIR}"/whitespace.py "${files[@]}"

exit ${ret}