blob: aa04dab4016c3163069d0e98367a5b60e7333f11 (
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
|
#!/bin/sh
READER="valgrind -q --leak-check=full ../example/ndpiReader -p ../example/protos.txt -c ../example/categories.txt"
RC=0
PCAPS=`cd pcap; /bin/ls *.pcap`
check_results() {
for f in $PCAPS; do
CMD="$READER -q -i pcap/$f > /tmp/reader.out"
$CMD
NUM_DIFF=0
if [ -f /tmp/reader.out ]; then
NUM_DIFF=`wc -l /tmp/reader.out`
fi
if [ $NUM_DIFF -eq 0 ]; then
printf "%-32s\tOK\n" "$f"
else
printf "%-32s\tERROR\n" "$f"
echo "$CMD"
cat /tmp/reader.out
RC=1
fi
/bin/rm -f /tmp/reader.out
done
}
check_results
exit $RC
|