mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
301 B
Bash
18 lines
301 B
Bash
#!/bin/sh
|
|
|
|
if [ $1 ]; then
|
|
LIST=$1;
|
|
else
|
|
LIST=$(git ls-tree -r --name-only --full-tree HEAD src/ | grep -E '*.c$')
|
|
PREFIX="../../"
|
|
fi
|
|
|
|
for SMPL in *.cocci; do
|
|
echo "Testing cocci file: $SMPL"
|
|
for FILE in $LIST ; do
|
|
spatch -sp_file $SMPL $PREFIX$FILE 2>/dev/null || exit 1;
|
|
done
|
|
done
|
|
|
|
exit 0
|