-
Notifications
You must be signed in to change notification settings - Fork 129
/
testing.sh
executable file
·55 lines (48 loc) · 975 Bytes
/
testing.sh
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
47
48
49
50
51
52
53
54
#!/bin/bash
set -e
if [ "$1" = "" ]; then
echo Maintainer only tool.
exit 1
elif [ "$1" = all ]; then
exec bash $0 linux-2.6.18 centos5 linux-3.11.2 centos6 linux-3.4.66 linux-3.9.11 centos7 linux-3.14 linux-3.17 linux-3.19
exit 1
fi
smilint IPT-NETFLOW-MIB.my
cfg=()
echo -n Testing for:
for k in "$@"; do
if [ ! -d /usr/src/$k ]; then continue; fi
echo -n " $k"
cfg+=("./configure --kdir=/usr/src/$k")
done
echo
readarray -t opts <<EOF
--disable-snmp-agent
--enable-aggregation
--enable-natevents
--enable-snmp-rules
--enable-macaddress
--enable-vlan
--promisc-mpls
--enable-direction
--enable-sampler
--enable-sampler=hash
--enable-promisc --promisc-mpls
--enable-physdev
--enable-physdev-override
EOF
if [ "$SHORT" ]; then
opts=("$SHORT")
fi
colorecho() {
echo -e "\033[1;32m$@\033[m"
}
for i in "${cfg[@]}"; do
for j in "${opts[@]}"; do
echo
colorecho == $i $j
echo
$i $j -Werror
make
done
done