aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/suricata/qa/coccinelle/run_check.sh
blob: 79ec9cc6f0fee79f98e8864e2867f4f26c8adfb3 (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
#!/bin/sh

if [ $1 ]; then
	case $1 in
	*[ch])
		LIST=$@;
		;;
        *..*) 
        	LIST=$(git diff --pretty="format:" --name-only $1 | grep -E '[ch]$')
		PREFIX=$(git rev-parse --show-toplevel)/
		;;
	*)
		LIST=$(git show --pretty="format:" --name-only $1 | grep -E '[ch]$')
		PREFIX=$(git rev-parse --show-toplevel)/
		;;
	esac
else
	LIST=$(git ls-tree -r --name-only --full-tree  HEAD src/ | grep -E '*.c$')
	PREFIX=$(git rev-parse --show-toplevel)/
fi

if [ -z "$CONCURRENCY_LEVEL" ]; then
	CONCURRENCY_LEVEL=1
	echo "No concurrency"
else
	echo "Using concurrency level $CONCURRENCY_LEVEL"
fi

for SMPL in $(git rev-parse --show-toplevel)/qa/coccinelle/*.cocci; do
	echo "Testing cocci file: $SMPL"
	if command -v parallel >/dev/null; then
		echo -n $LIST | parallel -d ' ' -j $CONCURRENCY_LEVEL spatch --very-quiet -sp_file $SMPL --undefined UNITTESTS $PREFIX{} || if [ -z "$NOT_TERMINAL" ]; then exit 1; fi
	else
		for FILE in $LIST ; do
			spatch --very-quiet -sp_file $SMPL --undefined UNITTESTS  $PREFIX$FILE || if [ -z "$NOT_TERMINAL" ]; then exit 1; fi
		done
	fi
done

exit 0